After recent changes regarding the txpool validation (specifically chaining txes in the pool), every time a new tx is accepted in the pool, this validates the entire pool again. As a result, after N txes are in the pool, the total amount of validations done for the current pool is (n^2+n) / 2 validations.
For 500 txes in the pool, this amounts to 125,250 txes. Perhaps there is a way to keep some kind of validation tx open on the db, so we have a pending state and only need to validate new txes as they come in
After recent changes regarding the txpool validation (specifically chaining txes in the pool), every time a new tx is accepted in the pool, this validates the entire pool again. As a result, after
N
txes are in the pool, the total amount of validations done for the current pool is(n^2+n) / 2
validations. For 500 txes in the pool, this amounts to 125,250 txes. Perhaps there is a way to keep some kind of validation tx open on the db, so we have a pending state and only need to validate new txes as they come in