Skip to content

Commit

Permalink
contracts: remove extra string conversions
Browse files Browse the repository at this point in the history
  • Loading branch information
JukLee0ira committed Feb 6, 2025
1 parent c0c7508 commit d51992a
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 d51992a

Please sign in to comment.