We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4684fd0 commit ab553e2Copy full SHA for ab553e2
chain/ethereum/src/ethereum_adapter.rs
@@ -478,7 +478,7 @@ impl EthereumAdapter {
478
Ok(_) | Err(EthereumContractCallError::Revert(_)) => false,
479
Err(_) => true,
480
})
481
- .limit(10)
+ .limit(*REQUEST_RETRIES)
482
.timeout_secs(*JSON_RPC_TIMEOUT)
483
.run(move || {
484
let call_data = call_data.clone();
@@ -1072,7 +1072,7 @@ impl EthereumAdapterTrait for EthereumAdapter {
1072
// transaction never made it back into the main chain.
1073
Box::new(
1074
retry("batch eth_getTransactionReceipt RPC call", &logger)
1075
- .limit(16)
1076
.no_logging()
1077
1078
0 commit comments