core, eth, miner: enforce configured mining reward post 1559 too

This commit is contained in:
Péter Szilágyi
2021-06-04 09:55:00 +03:00
parent 3094e7f3b8
commit 7e915ee379
9 changed files with 39 additions and 12 deletions

View File

@ -231,7 +231,7 @@ func (b *EthAPIBackend) SendTx(ctx context.Context, signedTx *types.Transaction)
}
func (b *EthAPIBackend) GetPoolTransactions() (types.Transactions, error) {
pending, err := b.eth.txPool.Pending()
pending, err := b.eth.txPool.Pending(false)
if err != nil {
return nil, err
}