We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I see geth does:
func (p *BlobPool) Content() (map[common.Address][]*types.Transaction, map[common.Address][]*types.Transaction) { return make(map[common.Address][]*types.Transaction), make(map[common.Address][]*types.Transaction) } func (p *BlobPool) ContentFrom(addr common.Address) ([]*types.Transaction, []*types.Transaction) { return []*types.Transaction{}, []*types.Transaction{} } func (p *BlobPool) Locals() []common.Address { return []common.Address{} }
Seems same need for: txpool_contentFrom and txpool_locals
The text was updated successfully, but these errors were encountered:
But does the spec say that txpool_content should not return blob txns?
txpool_content
Sorry, something went wrong.
No branches or pull requests
I see geth does:
Seems same need for: txpool_contentFrom and txpool_locals
The text was updated successfully, but these errors were encountered: