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
|maxDelay|Maximum delay between retries|[`time.Duration`](https://pkg.go.dev/time#Duration)|`30s`
107
90
@@ -174,7 +157,7 @@ nav_order: 2
174
157
|idleTimeout|The max duration to hold a HTTP keepalive connection between calls|[`time.Duration`](https://pkg.go.dev/time#Duration)|`<nil>`
175
158
|maxIdleConns|The max number of idle connections to hold pooled|`int`|`<nil>`
176
159
|method|The HTTP Method to use when invoking the Gas Oracle REST API|`string`|`<nil>`
177
-
|mode|The gas oracle mode|connector | restapi | disabled|`<nil>`
160
+
|mode|The gas oracle mode|'connector', 'restapi', 'fixed', or 'disabled'|`<nil>`
178
161
|queryInterval|The minimum interval between queries to the Gas Oracle|[`time.Duration`](https://pkg.go.dev/time#Duration)|`<nil>`
179
162
|requestTimeout|The maximum amount of time that a request is allowed to remain open|[`time.Duration`](https://pkg.go.dev/time#Duration)|`<nil>`
180
163
|template|REST API Gas Oracle: A go template to execute against the result from the Gas Oracle, to create a JSON block that will be passed as the gas price to the connector|[Go Template](https://pkg.go.dev/text/template)`string`|`<nil>`
Copy file name to clipboardExpand all lines: internal/tmmsgs/en_config_descriptions.go
+1-1
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ var (
54
54
55
55
ConfigPolicyEngineSimpleFixedGasPrice=ffc("config.policyengine.simple.fixedGasPrice", "A fixed gasPrice value/structure to pass to the connector", "Raw JSON")
56
56
ConfigPolicyEngineSimpleResubmitInterval=ffc("config.policyengine.simple.resubmitInterval", "The time between warning and re-sending a transaction (same nonce) when a blockchain transaction has not been allocated a receipt", i18n.TimeDurationType)
57
-
ConfigPolicyEngineSimpleGasOracleEnabled=ffc("config.policyengine.simple.gasOracle.mode", "The gas oracle mode", "connector | restapi | disabled")
57
+
ConfigPolicyEngineSimpleGasOracleEnabled=ffc("config.policyengine.simple.gasOracle.mode", "The gas oracle mode", "'connector', 'restapi', 'fixed', or 'disabled'")
58
58
ConfigPolicyEngineSimpleGasOracleGoTemplate=ffc("config.policyengine.simple.gasOracle.template", "REST API Gas Oracle: A go template to execute against the result from the Gas Oracle, to create a JSON block that will be passed as the gas price to the connector", i18n.GoTemplateType)
59
59
ConfigPolicyEngineSimpleGasOracleURL=ffc("config.policyengine.simple.gasOracle.url", "REST API Gas Oracle: The URL of a Gas Oracle REST API to call", i18n.StringType)
60
60
ConfigPolicyEngineSimpleGasOracleProxyURL=ffc("config.policyengine.simple.gasOracle.proxy.url", "Optional HTTP proxy URL to use for the Gas Oracle REST API", i18n.StringType)
0 commit comments