aboutsummaryrefslogtreecommitdiffstats
path: root/accounts/abi
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2017-01-06 21:55:55 +0800
committerGitHub <noreply@github.com>2017-01-06 21:55:55 +0800
commit59b8245bbced3c0511623ecaa8b7d4e0434343cd (patch)
treef3965293859731b4bc3a588cb152b87c4790e27d /accounts/abi
parent8f9daaa3ba71c3b6bdcc24adfdc987e6f3a2e184 (diff)
parente171bf74f8b6d15c2ae51e259d703ee5b729a298 (diff)
downloadgo-tangerine-59b8245bbced3c0511623ecaa8b7d4e0434343cd.tar
go-tangerine-59b8245bbced3c0511623ecaa8b7d4e0434343cd.tar.gz
go-tangerine-59b8245bbced3c0511623ecaa8b7d4e0434343cd.tar.bz2
go-tangerine-59b8245bbced3c0511623ecaa8b7d4e0434343cd.tar.lz
go-tangerine-59b8245bbced3c0511623ecaa8b7d4e0434343cd.tar.xz
go-tangerine-59b8245bbced3c0511623ecaa8b7d4e0434343cd.tar.zst
go-tangerine-59b8245bbced3c0511623ecaa8b7d4e0434343cd.zip
Merge pull request #3516 from fjl/types-drop-sign-ecdsa
core/types: remove redundant SignECDSA wrappers, rename to SignTx
Diffstat (limited to 'accounts/abi')
-rw-r--r--accounts/abi/bind/util_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/accounts/abi/bind/util_test.go b/accounts/abi/bind/util_test.go
index d3ed02575..f31dbfc29 100644
--- a/accounts/abi/bind/util_test.go
+++ b/accounts/abi/bind/util_test.go
@@ -60,7 +60,7 @@ func TestWaitDeployed(t *testing.T) {
// Create the transaction.
tx := types.NewContractCreation(0, big.NewInt(0), test.gas, big.NewInt(1), common.FromHex(test.code))
- tx, _ = tx.SignECDSA(types.HomesteadSigner{}, testKey)
+ tx, _ = types.SignTx(tx, types.HomesteadSigner{}, testKey)
// Wait for it to get mined in the background.
var (