diff options
author | Yondon Fu <yondon.fu@gmail.com> | 2019-01-07 16:47:11 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2019-01-07 16:47:11 +0800 |
commit | e05d46807525f76dab83f84e9dfc9e4537398641 (patch) | |
tree | 31d6b8d1a433bb3c71ec4ad24ec333a92532a79f /internal | |
parent | aca588a8e434cd0409c44d55b6009fb74e913537 (diff) | |
download | go-tangerine-e05d46807525f76dab83f84e9dfc9e4537398641.tar go-tangerine-e05d46807525f76dab83f84e9dfc9e4537398641.tar.gz go-tangerine-e05d46807525f76dab83f84e9dfc9e4537398641.tar.bz2 go-tangerine-e05d46807525f76dab83f84e9dfc9e4537398641.tar.lz go-tangerine-e05d46807525f76dab83f84e9dfc9e4537398641.tar.xz go-tangerine-e05d46807525f76dab83f84e9dfc9e4537398641.tar.zst go-tangerine-e05d46807525f76dab83f84e9dfc9e4537398641.zip |
internal/ethapi: ask transaction pool for pending nonce (#15794)
Diffstat (limited to 'internal')
-rw-r--r-- | internal/ethapi/api.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go index 656555b3b..73b629bd9 100644 --- a/internal/ethapi/api.go +++ b/internal/ethapi/api.go @@ -1074,6 +1074,15 @@ func (s *PublicTransactionPoolAPI) GetRawTransactionByBlockHashAndIndex(ctx cont // GetTransactionCount returns the number of transactions the given address has sent for the given block number func (s *PublicTransactionPoolAPI) GetTransactionCount(ctx context.Context, address common.Address, blockNr rpc.BlockNumber) (*hexutil.Uint64, error) { + // Ask transaction pool for the nonce which includes pending transactions + if blockNr == rpc.PendingBlockNumber { + nonce, err := s.b.GetPoolNonce(ctx, address) + if err != nil { + return nil, err + } + return (*hexutil.Uint64)(&nonce), nil + } + // Resolve block number and use its state to ask for the nonce state, _, err := s.b.StateAndHeaderByNumber(ctx, blockNr) if state == nil || err != nil { return nil, err |