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 sending algorithm periodically checks the number of transactions in the pool using pendingExtrinsics call. This causes problems with RPC response size when the count of transactions in pool is significant.
The other sending policy could be implemented (like in stps):
ttxt can estimate how many transaction are in the pool for bestchain by checking the number of transaction included in the best block,
the number of the block shall be tracked - same height should not be accounted more than once,
it maybe require to send transaction in smaller chunks (e.g. 5 times per block), so the tool needs estimate (e.g. average) on how many transactions are included in the block. Once the best block is received the bigger/smaller chunk should be submitted.
There is no need for addtional parameter describing expected count of txs in the pool - send-threshold should be reused.
The text was updated successfully, but these errors were encountered:
Currently the sending algorithm periodically checks the number of transactions in the pool using
pendingExtrinsics
call. This causes problems with RPC response size when the count of transactions in pool is significant.The other sending policy could be implemented (like in stps):
There is no need for addtional parameter describing expected count of txs in the pool -
send-threshold
should be reused.The text was updated successfully, but these errors were encountered: