-
Notifications
You must be signed in to change notification settings - Fork 1.7k
TX queue gas limit config and allow local transactions over the gas limit #2553
Conversation
dfe9916
to
c427b1f
Compare
@@ -184,6 +184,10 @@ Sealing/Mining Options: | |||
more than 32 characters. (default: {flag_extra_data:?}) | |||
--tx-queue-size LIMIT Maximum amount of transactions in the queue (waiting | |||
to be included in next block) (default: {flag_tx_queue_size}). | |||
--tx-queue-gas LIMIT Maximum amount of total gas for external transactions in | |||
the queue. LIIMIT can be either an amont of gas or |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo amont
-> amount
Shouldn't we propagate limited number of transactions (for instance blockgas*2) in case of |
What about |
c427b1f
to
21a8afe
Compare
@arkpar We could track perviously-sent transactions for each peer (actually, it's considered Bad Form to send txs to the same peer more than once) but we have to be careful to limit the memory used while tracking this so the footprint of long-running nodes stays low. |
If you do something like this please don't forget to whitelist the peers from the |
…imit (#2553) * Gas limit config; Allow local transactions over the limit * Fix typo [ci:skip]
* TX queue gas limit config and allow local transactions over the gas limit (#2553) * Gas limit config; Allow local transactions over the limit * Fix typo [ci:skip] * v1.3.7
#2547