Commit 06ac31cf authored by Péter Szilágyi's avatar Péter Szilágyi

accounts/abi: fix typo in the comment (dummy commit)

parent 2e14aff8
...@@ -77,7 +77,7 @@ func (abi ABI) Pack(name string, args ...interface{}) ([]byte, error) { ...@@ -77,7 +77,7 @@ func (abi ABI) Pack(name string, args ...interface{}) ([]byte, error) {
return append(method.Id(), arguments...), nil return append(method.Id(), arguments...), nil
} }
// toGoSliceType prses the input and casts it to the proper slice defined by the ABI // toGoSliceType parses the input and casts it to the proper slice defined by the ABI
// argument in T. // argument in T.
func toGoSlice(i int, t Argument, output []byte) (interface{}, error) { func toGoSlice(i int, t Argument, output []byte) (interface{}, error) {
index := i * 32 index := i * 32
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment