diff options
author | Martin Holst Swende <martin@swende.se> | 2017-12-21 17:26:30 +0800 |
---|---|---|
committer | Martin Holst Swende <martin@swende.se> | 2017-12-23 02:26:52 +0800 |
commit | 73d4a57d47d3381faa0516b319fa5598e71681f9 (patch) | |
tree | 20f6860fb4a25ba584ac6899ba7ed8bc23e38219 /accounts/abi/unpack.go | |
parent | 81d4cafb324d8c4352a40d2cf33c2085d029cd37 (diff) | |
download | dexon-73d4a57d47d3381faa0516b319fa5598e71681f9.tar.gz dexon-73d4a57d47d3381faa0516b319fa5598e71681f9.tar.zst dexon-73d4a57d47d3381faa0516b319fa5598e71681f9.zip |
acounts/abi: refactor abi, generalize abi pack/unpack to Arguments
Diffstat (limited to 'accounts/abi/unpack.go')
-rw-r--r-- | accounts/abi/unpack.go | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/accounts/abi/unpack.go b/accounts/abi/unpack.go index 377aee874..80efb3f7e 100644 --- a/accounts/abi/unpack.go +++ b/accounts/abi/unpack.go @@ -25,15 +25,6 @@ import ( "github.com/ethereum/go-ethereum/common" ) -// unpacker is a utility interface that enables us to have -// abstraction between events and methods and also to properly -// "unpack" them; e.g. events use Inputs, methods use Outputs. -type unpacker interface { - tupleUnpack(v interface{}, output []byte) error - singleUnpack(v interface{}, output []byte) error - isTupleReturn() bool -} - // reads the integer based on its kind func readInteger(kind reflect.Kind, b []byte) interface{} { switch kind { |