aboutsummaryrefslogtreecommitdiffstats
path: root/accounts/abi/type.go
diff options
context:
space:
mode:
authorRicardo Domingos <ricardohsd@gmail.com>2018-04-04 19:42:36 +0800
committerFelix Lange <fjl@users.noreply.github.com>2018-04-04 19:42:36 +0800
commit6ab9f0a19fbf548a78d08a526f522f41d8175a4e (patch)
tree49f515b8cf0550ec70f3a3daa3989a3499243aa5 /accounts/abi/type.go
parent7aad81f8815084c8ed032705fbaf6d3710e518cf (diff)
downloadgo-tangerine-6ab9f0a19fbf548a78d08a526f522f41d8175a4e.tar.gz
go-tangerine-6ab9f0a19fbf548a78d08a526f522f41d8175a4e.tar.zst
go-tangerine-6ab9f0a19fbf548a78d08a526f522f41d8175a4e.zip
accounts/abi: improve test coverage (#16044)
Diffstat (limited to 'accounts/abi/type.go')
-rw-r--r--accounts/abi/type.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/accounts/abi/type.go b/accounts/abi/type.go
index a1f13ffa2..9de36daff 100644
--- a/accounts/abi/type.go
+++ b/accounts/abi/type.go
@@ -135,7 +135,7 @@ func NewType(t string) (typ Type, err error) {
typ.Type = reflect.TypeOf(bool(false))
case "address":
typ.Kind = reflect.Array
- typ.Type = address_t
+ typ.Type = addressT
typ.Size = 20
typ.T = AddressTy
case "string":