Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crypto/signature.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func VerifySignedMessageByOwner(
}
res, err := signerVerification.IsValidSignature(&bind.CallOpts{
Context: context.Background(),
}, hash[:], signature)
}, hash, signature)
if err != nil {
return err
}
Expand Down
4 changes: 2 additions & 2 deletions eip1271/abi.abi
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"constant": true,
"inputs": [
{
"name": "_data",
"type": "bytes"
"name": "_hash",
"type": "bytes32"
},
{
"name": "_signature",
Expand Down
26 changes: 13 additions & 13 deletions eip1271/eip1271.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 11 additions & 31 deletions types_encoding.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading