From 586eddfd09558bfd71f23c2e50c270d2ca665d49 Mon Sep 17 00:00:00 2001 From: Péter Szilágyi Date: Thu, 28 Apr 2016 12:00:11 +0300 Subject: release, all: integrate the release service into geth --- accounts/abi/bind/backend.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'accounts') 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 -- cgit