You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the signer node will apply the circuit capacity checker on all txs from the mempool. If a single tx exceeds the circuit capacity, the tx will be dropped from the mempool. However, the follower node won't drop these txs from their mempool since it doesn't enable the circuit capacity checker. It will lead to the incorrect nonce if a client calls eth_getTransactionCount to a rpc node.
Implementation
Do you have ideas regarding the implementation of this feature?
The signer node should communicate the dropped txs to the p2p network and the follower node should verify them locally. But need to dig deeper into the codebase to figure out the details
The text was updated successfully, but these errors were encountered:
Rationale
Currently, the signer node will apply the circuit capacity checker on all txs from the mempool. If a single tx exceeds the circuit capacity, the tx will be dropped from the mempool. However, the follower node won't drop these txs from their mempool since it doesn't enable the circuit capacity checker. It will lead to the incorrect nonce if a client calls
eth_getTransactionCount
to a rpc node.Implementation
Do you have ideas regarding the implementation of this feature?
The signer node should communicate the dropped txs to the p2p network and the follower node should verify them locally. But need to dig deeper into the codebase to figure out the details
The text was updated successfully, but these errors were encountered: