diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2016-05-03 19:19:05 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2016-05-03 19:19:05 +0800 |
commit | 488528e9e4bea886b381fad4333b1a61553eb2ed (patch) | |
tree | 3173d43775195e3055c5553ec54b5bb6012b86c7 /accounts | |
parent | 1c20313a6a1a35d5f540f878e7c263327c2ccfc1 (diff) | |
parent | 4536b993ff6a5b3751f59b52744078e150296654 (diff) | |
download | dexon-488528e9e4bea886b381fad4333b1a61553eb2ed.tar dexon-488528e9e4bea886b381fad4333b1a61553eb2ed.tar.gz dexon-488528e9e4bea886b381fad4333b1a61553eb2ed.tar.bz2 dexon-488528e9e4bea886b381fad4333b1a61553eb2ed.tar.lz dexon-488528e9e4bea886b381fad4333b1a61553eb2ed.tar.xz dexon-488528e9e4bea886b381fad4333b1a61553eb2ed.tar.zst dexon-488528e9e4bea886b381fad4333b1a61553eb2ed.zip |
Merge pull request #2497 from karalabe/version-contract-3
Geth release oracle
Diffstat (limited to 'accounts')
-rw-r--r-- | accounts/abi/bind/backend.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/accounts/abi/bind/backend.go b/accounts/abi/bind/backend.go index 7442557cc..604e1ef26 100644 --- a/accounts/abi/bind/backend.go +++ b/accounts/abi/bind/backend.go @@ -47,7 +47,8 @@ type ContractCaller interface { // used when the user does not provide some needed values, but rather leaves it up // to the transactor to decide. type ContractTransactor interface { - // Nonce retrieves the current pending nonce associated with an account. + // PendingAccountNonce retrieves the current pending nonce associated with an + // account. PendingAccountNonce(account common.Address) (uint64, error) // SuggestGasPrice retrieves the currently suggested gas price to allow a timely @@ -62,7 +63,7 @@ type ContractTransactor interface { EstimateGasLimit(sender common.Address, contract *common.Address, value *big.Int, data []byte) (*big.Int, error) // SendTransaction injects the transaction into the pending pool for execution. - SendTransaction(*types.Transaction) error + SendTransaction(tx *types.Transaction) error } // ContractBackend defines the methods needed to allow operating with contract |