aboutsummaryrefslogtreecommitdiffstats
path: root/accounts
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2016-04-28 17:00:11 +0800
committerPéter Szilágyi <peterke@gmail.com>2016-05-02 21:20:21 +0800
commit586eddfd09558bfd71f23c2e50c270d2ca665d49 (patch)
tree4015e542e0397c606d1f14ef23d15463881be554 /accounts
parentd46da273c6731512b4114393856a96be06505797 (diff)
downloadgo-tangerine-586eddfd09558bfd71f23c2e50c270d2ca665d49.tar
go-tangerine-586eddfd09558bfd71f23c2e50c270d2ca665d49.tar.gz
go-tangerine-586eddfd09558bfd71f23c2e50c270d2ca665d49.tar.bz2
go-tangerine-586eddfd09558bfd71f23c2e50c270d2ca665d49.tar.lz
go-tangerine-586eddfd09558bfd71f23c2e50c270d2ca665d49.tar.xz
go-tangerine-586eddfd09558bfd71f23c2e50c270d2ca665d49.tar.zst
go-tangerine-586eddfd09558bfd71f23c2e50c270d2ca665d49.zip
release, all: integrate the release service into geth
Diffstat (limited to 'accounts')
-rw-r--r--accounts/abi/bind/backend.go5
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