aboutsummaryrefslogtreecommitdiffstats
path: root/accounts/abi/unpack.go
diff options
context:
space:
mode:
authorMartin Holst Swende <martin@swende.se>2017-12-21 17:26:30 +0800
committerMartin Holst Swende <martin@swende.se>2017-12-23 02:26:52 +0800
commit73d4a57d47d3381faa0516b319fa5598e71681f9 (patch)
tree20f6860fb4a25ba584ac6899ba7ed8bc23e38219 /accounts/abi/unpack.go
parent81d4cafb324d8c4352a40d2cf33c2085d029cd37 (diff)
downloadgo-tangerine-73d4a57d47d3381faa0516b319fa5598e71681f9.tar
go-tangerine-73d4a57d47d3381faa0516b319fa5598e71681f9.tar.gz
go-tangerine-73d4a57d47d3381faa0516b319fa5598e71681f9.tar.bz2
go-tangerine-73d4a57d47d3381faa0516b319fa5598e71681f9.tar.lz
go-tangerine-73d4a57d47d3381faa0516b319fa5598e71681f9.tar.xz
go-tangerine-73d4a57d47d3381faa0516b319fa5598e71681f9.tar.zst
go-tangerine-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.go9
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 {