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
Copy file name to clipboardExpand all lines: config.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -241,7 +241,9 @@
241
241
242
242
|Key|Description|Type|Default Value|
243
243
|---|-----------|----|-------------|
244
-
|errorHistoryCount|The number of historical errors to retain in the operation|`int`|`25`
244
+
|maxHistoryActions|The number of actions to store per historical status updates|`int`|`50`
245
+
|maxHistoryCount|The number of historical status updates to retain in the operation|`int`|`50`
246
+
|maxHistorySummaryCount|The number of historical status summary records to retain in the operation|`int`|`50`
245
247
|maxInFlight|The maximum number of transactions to have in-flight with the policy engine / blockchain transaction pool|`int`|`100`
246
248
|nonceStateTimeout|How old the most recently submitted transaction record in our local state needs to be, before we make a request to the node to query the next nonce for a signing address|[`time.Duration`](https://pkg.go.dev/time#Duration)|`1h`
Copy file name to clipboardExpand all lines: internal/tmmsgs/en_config_descriptions.go
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -45,9 +45,11 @@ var (
45
45
ConfigConfirmationsRequired=ffc("config.confirmations.required", "Number of confirmations required to consider a transaction/event final", i18n.IntType)
46
46
ConfigConfirmationsStaleReceiptTimeout=ffc("config.confirmations.staleReceiptTimeout", "Duration after which to force a receipt check for a pending transaction", i18n.TimeDurationType)
47
47
48
-
ConfigTransactionsErrorHistoryCount=ffc("config.transactions.errorHistoryCount", "The number of historical errors to retain in the operation", i18n.IntType)
49
-
ConfigTransactionsMaxInflight=ffc("config.transactions.maxInFlight", "The maximum number of transactions to have in-flight with the policy engine / blockchain transaction pool", i18n.IntType)
50
-
ConfigTransactionsNonceStateTimeout=ffc("config.transactions.nonceStateTimeout", "How old the most recently submitted transaction record in our local state needs to be, before we make a request to the node to query the next nonce for a signing address", i18n.TimeDurationType)
48
+
ConfigTransactionsMaxHistoryCount=ffc("config.transactions.maxHistoryCount", "The number of historical status updates to retain in the operation", i18n.IntType)
49
+
ConfigTransactionsMaxHistorySummaryCount=ffc("config.transactions.maxHistorySummaryCount", "The number of historical status summary records to retain in the operation", i18n.IntType)
50
+
ConfigTransactionsMaxHistoryActions=ffc("config.transactions.maxHistoryActions", "The number of actions to store per historical status updates", i18n.IntType)
51
+
ConfigTransactionsMaxInflight=ffc("config.transactions.maxInFlight", "The maximum number of transactions to have in-flight with the policy engine / blockchain transaction pool", i18n.IntType)
52
+
ConfigTransactionsNonceStateTimeout=ffc("config.transactions.nonceStateTimeout", "How old the most recently submitted transaction record in our local state needs to be, before we make a request to the node to query the next nonce for a signing address", i18n.TimeDurationType)
51
53
52
54
ConfigPolicyEngineName=ffc("config.policyengine.name", "The name of the policy engine to use", i18n.StringType)
0 commit comments