various: remove redundant parentheses (#15793)

This commit is contained in:
Furkan KAMACI
2018-01-03 15:14:47 +03:00
committed by Péter Szilágyi
parent 9d48dbf5c2
commit b8caba9709
12 changed files with 22 additions and 22 deletions

View File

@ -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
}