aboutsummaryrefslogtreecommitdiffstats
path: root/accounts
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2016-09-26 18:40:28 +0800
committerPéter Szilágyi <peterke@gmail.com>2016-09-26 18:40:28 +0800
commit06ac31cf1a0621a40abb3e93238e60ddf2d7b56b (patch)
tree032e4b865fe049a502de93f83a5fff6449e70e06 /accounts
parent2e14aff80f294a34f6b28f0149b94fa7b9d3bf81 (diff)
downloaddexon-06ac31cf1a0621a40abb3e93238e60ddf2d7b56b.tar
dexon-06ac31cf1a0621a40abb3e93238e60ddf2d7b56b.tar.gz
dexon-06ac31cf1a0621a40abb3e93238e60ddf2d7b56b.tar.bz2
dexon-06ac31cf1a0621a40abb3e93238e60ddf2d7b56b.tar.lz
dexon-06ac31cf1a0621a40abb3e93238e60ddf2d7b56b.tar.xz
dexon-06ac31cf1a0621a40abb3e93238e60ddf2d7b56b.tar.zst
dexon-06ac31cf1a0621a40abb3e93238e60ddf2d7b56b.zip
accounts/abi: fix typo in the comment (dummy commit)
Diffstat (limited to 'accounts')
-rw-r--r--accounts/abi/abi.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/accounts/abi/abi.go b/accounts/abi/abi.go
index 1b07b2f68..c127cd7a9 100644
--- a/accounts/abi/abi.go
+++ b/accounts/abi/abi.go
@@ -77,7 +77,7 @@ func (abi ABI) Pack(name string, args ...interface{}) ([]byte, error) {
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.
func toGoSlice(i int, t Argument, output []byte) (interface{}, error) {
index := i * 32