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
DefaultInitialInterval=1*time.Second// Initial delay for retry interval.
29
-
DefaultMaxInterval=60*time.Second// Maximum interval an individual retry may have.
30
-
DefaultMaxElapsedTime=0*time.Second// Maximum time all retries may take. `0` corresponds to no limit on the time of the retries.
31
-
DefaultRandomizationFactorfloat64=0// Randomization (Jitter) factor used to map retry interval to a range of values around the computed interval. In precise terms (random value in range [1 - randomizationfactor, 1 + randomizationfactor]). NOTE: This is set to 0 as we do not use jitter in Aligned.
32
-
DefaultMultiplierfloat64=2// Multiplier factor computed exponential retry interval is scaled by.
33
-
DefaultNumRetriesuint64=3// Total number of retries attempted.
34
-
ChainInitialInterval=12*time.Second// Initial delay for retry interval for contract calls. Corresponds to 1 ethereum block.
35
-
ChainMaxInterval=2*time.Minute// Maximum interval for an individual retry.
28
+
RpcInitialInterval=1*time.Second// Initial delay for retry interval.
29
+
RpcMaxInterval=60*time.Second// Maximum interval an individual retry may have.
30
+
RpcMaxElapsedTime=0*time.Second// Maximum time all retries may take. `0` corresponds to no limit on the time of the retries.
31
+
RpcRandomizationFactorfloat64=0// Randomization (Jitter) factor used to map retry interval to a range of values around the computed interval. In precise terms (random value in range [1 - randomizationfactor, 1 + randomizationfactor]). NOTE: This is set to 0 as we do not use jitter in Aligned.
32
+
RpcMultiplierfloat64=2// Multiplier factor computed exponential retry interval is scaled by.
33
+
RpcNumRetriesuint64=3// Total number of retries attempted.
34
+
ChainInitialInterval=12*time.Second// Initial delay for retry interval for contract calls. Corresponds to 1 ethereum block.
35
+
ChainMaxInterval=2*time.Minute// Maximum interval for an individual retry.
0 commit comments