vendor: clean up go-ethereum (#299)

This commit is contained in:
Adam Babik 2017-09-07 10:35:10 +02:00 committed by GitHub
parent 9463d3843a
commit 39aeb3b09d
2 changed files with 1 additions and 3 deletions

View File

@ -1180,7 +1180,7 @@ func submitTransaction(ctx context.Context, b Backend, tx *types.Transaction) (c
return tx.Hash(), nil
}
// CompleteQueuedTransaction creates a transaction by unpacking queued transaction, signs it and submits to the
// SendTransaction creates a transaction by unpacking queued transaction, signs it and submits to the
// transaction pool.
func (s *PublicTransactionPoolAPI) SendTransaction(ctx context.Context, args SendTxArgs, passphrase string) (common.Hash, error) {
// Set some sanity defaults and terminate on failure

View File

@ -5,8 +5,6 @@ import (
"github.com/ethereum/go-ethereum/common"
)
const SelectedAccountKey = "selected_account"
// AccountManager abstracts both internal account manager and extra filter status backend requires
type AccountManager struct {
am *accounts.Manager