aboutsummaryrefslogtreecommitdiffstats
path: root/accounts/abi/argument.go
diff options
context:
space:
mode:
Diffstat (limited to 'accounts/abi/argument.go')
-rw-r--r--accounts/abi/argument.go10
1 files changed, 0 insertions, 10 deletions
diff --git a/accounts/abi/argument.go b/accounts/abi/argument.go
index 65f79c9d4..ad17fbf2b 100644
--- a/accounts/abi/argument.go
+++ b/accounts/abi/argument.go
@@ -169,16 +169,6 @@ func (arguments Arguments) unpackAtomic(v interface{}, output []byte) error {
if err != nil {
return err
}
-
- // if we reach this part, there is only one output member from the contract event.
- // for mobile, the result type is always a slice.
- if reflect.Slice == value.Kind() && value.Len() >= 1 {
- //check if it's not a byte slice
- if reflect.TypeOf([]byte{}) != value.Type() {
- value = value.Index(0).Elem()
- }
- }
-
return set(value, reflect.ValueOf(marshalledValue), arg)
}