diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-09-06 00:07:57 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2016-11-14 23:56:58 +0800 |
commit | 178da7c6a94718389e7192d87df5ee42e7223bc3 (patch) | |
tree | 010f49656b5d1656cf24a4ff9bac35788dd9959f /accounts/abi/bind/bind_test.go | |
parent | d89ea3e6f90c32a97bad58b82a15af0d81f4250e (diff) | |
download | go-tangerine-178da7c6a94718389e7192d87df5ee42e7223bc3.tar go-tangerine-178da7c6a94718389e7192d87df5ee42e7223bc3.tar.gz go-tangerine-178da7c6a94718389e7192d87df5ee42e7223bc3.tar.bz2 go-tangerine-178da7c6a94718389e7192d87df5ee42e7223bc3.tar.lz go-tangerine-178da7c6a94718389e7192d87df5ee42e7223bc3.tar.xz go-tangerine-178da7c6a94718389e7192d87df5ee42e7223bc3.tar.zst go-tangerine-178da7c6a94718389e7192d87df5ee42e7223bc3.zip |
mobile: initial wrappers for mobile support
Diffstat (limited to 'accounts/abi/bind/bind_test.go')
-rw-r--r-- | accounts/abi/bind/bind_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accounts/abi/bind/bind_test.go b/accounts/abi/bind/bind_test.go index 67c09c3ad..6ebc8ea0a 100644 --- a/accounts/abi/bind/bind_test.go +++ b/accounts/abi/bind/bind_test.go @@ -398,7 +398,7 @@ func TestBindings(t *testing.T) { // Generate the test suite for all the contracts for i, tt := range bindTests { // Generate the binding and create a Go source file in the workspace - bind, err := Bind([]string{tt.name}, []string{tt.abi}, []string{tt.bytecode}, "bindtest") + bind, err := Bind([]string{tt.name}, []string{tt.abi}, []string{tt.bytecode}, "bindtest", LangGo) if err != nil { t.Fatalf("test %d: failed to generate binding: %v", i, err) } |