ethereum / wiki

The Ethereum Wiki

Home Page:https://www.ethereum.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

wiki: eth_pendingTransactions documentation lacks 'for managed addresses' caveat

meowsbits opened this issue · comments

System information

Geth version: any from at least last few years

Expected behaviour

eth_pendingTransactions returns all transactions marked as pending in the transaction pool, as documented here: https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_pendingtransactions

__eth_pendingTransactions__

Returns the pending transactions list.

Actual behaviour

eth_pendingTransactions returns pending transactions sent from accounts managed by geth instance.

Proposed Solution

Fix documentation to read:

__eth_pendingTransactions__

Returns the transactions that are pending in the transaction pool and have a from address that is one of the accounts this node manages.

https://github.com/ethereum/go-ethereum/blob/master/internal/ethapi/api.go#L1582-L1584

Linking to the previous Geth issue: ethereum/go-ethereum#20523