Skip to content

Commit

Permalink
Merge pull request #809 from eosnetworkfoundation/trx_retry_max_expir…
Browse files Browse the repository at this point in the history
…ation_3_1_x

[3.1] Increase default transaction-retry-max-expiration-sec from 90 to 120
  • Loading branch information
linh2931 authored Aug 10, 2022
2 parents 3aa1389 + e87a707 commit 104cf72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/chain_plugin/chain_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ void chain_plugin::set_program_options(options_description& cli, options_descrip
"Maximum size (in GiB) allowed to be allocated for the Transaction Retry feature. Setting above 0 enables this feature.")
("transaction-retry-interval-sec", bpo::value<uint32_t>()->default_value(20),
"How often, in seconds, to resend an incoming transaction to network if not seen in a block.")
("transaction-retry-max-expiration-sec", bpo::value<uint32_t>()->default_value(90),
("transaction-retry-max-expiration-sec", bpo::value<uint32_t>()->default_value(120),
"Maximum allowed transaction expiration for retry transactions, will retry transactions up to this value.")
("transaction-finality-status-max-storage-size-gb", bpo::value<uint64_t>(),
"Maximum size (in GiB) allowed to be allocated for the Transaction Finality Status feature. Setting above 0 enables this feature.")
Expand Down

0 comments on commit 104cf72

Please sign in to comment.