From 5513c49c54f42ce6a9683b4fad9193b361b47f8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= Date: Fri, 11 Nov 2016 10:27:30 +0200 Subject: accounts/abi/bind, mobile: review fixes and android tests --- accounts/abi/bind/bind.go | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'accounts/abi/bind/bind.go') diff --git a/accounts/abi/bind/bind.go b/accounts/abi/bind/bind.go index 154c67b0e..84cf22e3c 100644 --- a/accounts/abi/bind/bind.go +++ b/accounts/abi/bind/bind.go @@ -120,12 +120,16 @@ func Bind(types []string, abis []string, bytecodes []string, pkg string, lang La if err := tmpl.Execute(buffer, data); err != nil { return "", err } - // Pass the code through goimports to clean it up and double check - code, err := imports.Process("", buffer.Bytes(), nil) - if err != nil { - return "", fmt.Errorf("%v\n%s", err, buffer) + // For Go bindings pass the code through goimports to clean it up and double check + if lang == LangGo { + code, err := imports.Process("", buffer.Bytes(), nil) + if err != nil { + return "", fmt.Errorf("%v\n%s", err, buffer) + } + return string(code), nil } - return string(code), nil + // For all others just return as is for now + return string(buffer.Bytes()), nil } // bindType is a set of type binders that convert Solidity types to some supported -- cgit v1.2.3