Open mattsse opened 2 weeks ago
currently we have
https://github.com/paradigmxyz/reth/blob/9f6f63d45a1a5b9edf3087a9210e6a9170e4c1ec/crates/transaction-pool/src/traits.rs#L755-L760
which is usually invoked for several reasons:
exceeds gas https://github.com/paradigmxyz/reth/blob/9f6f63d45a1a5b9edf3087a9210e6a9170e4c1ec/crates/ethereum/payload/src/lib.rs#L226-L229
invalid transaction https://github.com/paradigmxyz/reth/blob/9f6f63d45a1a5b9edf3087a9210e6a9170e4c1ec/crates/ethereum/payload/src/lib.rs#L268-L271
we can add this info as additional context via an enum to mark_invalid
InvalidKind { ExceedsGasLimit, InvalidTransaction(Err),... }
No response
Hello, is it possible to work on it ?
Describe the feature
currently we have
https://github.com/paradigmxyz/reth/blob/9f6f63d45a1a5b9edf3087a9210e6a9170e4c1ec/crates/transaction-pool/src/traits.rs#L755-L760
which is usually invoked for several reasons:
exceeds gas https://github.com/paradigmxyz/reth/blob/9f6f63d45a1a5b9edf3087a9210e6a9170e4c1ec/crates/ethereum/payload/src/lib.rs#L226-L229
invalid transaction https://github.com/paradigmxyz/reth/blob/9f6f63d45a1a5b9edf3087a9210e6a9170e4c1ec/crates/ethereum/payload/src/lib.rs#L268-L271
we can add this info as additional context via an enum to mark_invalid
TODO
InvalidKind { ExceedsGasLimit, InvalidTransaction(Err),... }
Additional context
No response