diff options
author | Furkan KAMACI <furkankamaci@gmail.com> | 2018-01-03 20:14:47 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-01-03 20:14:47 +0800 |
commit | b8caba97099ee5eed33c3b80dd4ea540722e7d8f (patch) | |
tree | 36c3661d083d81bc52676ff9a030f6e02c91b29c /accounts/abi | |
parent | 9d48dbf5c2d0401042134d94997be1850bf8499b (diff) | |
download | dexon-b8caba97099ee5eed33c3b80dd4ea540722e7d8f.tar.gz dexon-b8caba97099ee5eed33c3b80dd4ea540722e7d8f.tar.zst dexon-b8caba97099ee5eed33c3b80dd4ea540722e7d8f.zip |
various: remove redundant parentheses (#15793)
Diffstat (limited to 'accounts/abi')
-rw-r--r-- | accounts/abi/argument.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accounts/abi/argument.go b/accounts/abi/argument.go index 4540c342f..04ca6150a 100644 --- a/accounts/abi/argument.go +++ b/accounts/abi/argument.go @@ -202,7 +202,7 @@ func (arguments Arguments) Pack(args ...interface{}) ([]byte, error) { inputOffset := 0 for _, abiArg := range abiArgs { if abiArg.Type.T == ArrayTy { - inputOffset += (32 * abiArg.Type.Size) + inputOffset += 32 * abiArg.Type.Size } else { inputOffset += 32 } |