Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JukLee0ira committed Jan 24, 2025
1 parent 357c8a2 commit 6cca31e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/utils_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ func TestSendTxSign(t *testing.T) {
t.Fatalf("Can't get signers: %v", err)
}

if signers[0].String() != oldBlocks[blockHash].String() {
if signers[0] != oldBlocks[blockHash] {
t.Errorf("Tx sign for block signer not match %v - %v", signers[0].String(), oldBlocks[blockHash].String())
}

Expand Down

0 comments on commit 6cca31e

Please sign in to comment.