mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-15 20:46:40 +00:00
accounts/abi: fix typo in comment (#25271)
This commit is contained in:
parent
e108d36575
commit
93f981bb61
1 changed files with 1 additions and 1 deletions
|
|
@ -166,7 +166,7 @@ func ParseSelector(unescapedSelector string) (SelectorMarshaling, error) {
|
||||||
return SelectorMarshaling{}, fmt.Errorf("failed to parse selector '%s': unexpected string '%s'", unescapedSelector, rest)
|
return SelectorMarshaling{}, fmt.Errorf("failed to parse selector '%s': unexpected string '%s'", unescapedSelector, rest)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Reassemble the fake ABI and constuct the JSON
|
// Reassemble the fake ABI and construct the JSON
|
||||||
fakeArgs, err := assembleArgs(args)
|
fakeArgs, err := assembleArgs(args)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return SelectorMarshaling{}, fmt.Errorf("failed to parse selector: %v", err)
|
return SelectorMarshaling{}, fmt.Errorf("failed to parse selector: %v", err)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue