Skip to content

Commit 030e128

Browse files
authored
v0.19.1 (#2137)
2 parents d78b64c + 38f16e2 commit 030e128

File tree

26 files changed

+1163
-54
lines changed

26 files changed

+1163
-54
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ endif
1818
CONFIG_FILE?=config-files/config.yaml
1919
AGG_CONFIG_FILE?=config-files/config-aggregator.yaml
2020

21-
OPERATOR_VERSION=v0.19.0
21+
OPERATOR_VERSION=v0.19.1
2222
EIGEN_SDK_GO_VERSION_DEVNET=v0.2.0-beta.1
2323
EIGEN_SDK_GO_VERSION_TESTNET=v0.2.0-beta.1
2424
EIGEN_SDK_GO_VERSION_MAINNET=v0.2.0-beta.1

config-files/config-batcher-docker.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,6 @@ batcher:
3737
# When replacing the message, how much higher should the max fee in comparison to the original one
3838
# The calculation is replacement_max_fee >= original_max_fee + original_max_fee * min_bump_percentage / 100
3939
min_bump_percentage: 10
40+
# How often to poll for BalanceUnlocked events in seconds (default: 600 seconds = 10 minutes)
41+
balance_unlock_polling_interval_seconds: 600
4042

config-files/config-batcher-ethereum-package.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,6 @@ batcher:
3535
# When replacing the message, how much higher should the max fee in comparison to the original one
3636
# The calculation is replacement_max_fee >= original_max_fee + original_max_fee * min_bump_percentage / 100
3737
min_bump_percentage: 10
38+
# How often to poll for BalanceUnlocked events in seconds (default: 600 seconds = 10 minutes)
39+
balance_unlock_polling_interval_seconds: 600
3840

config-files/config-batcher.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,5 @@ batcher:
3737
# When replacing the message, how much higher should the max fee in comparison to the original one
3838
# The calculation is replacement_max_fee >= original_max_fee + original_max_fee * min_bump_percentage / 100
3939
min_bump_percentage: 10
40+
# How often to poll for BalanceUnlocked events in seconds (default: 600 seconds = 10 minutes)
41+
balance_unlock_polling_interval_seconds: 600

crates/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/batcher/src/config/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ pub struct BatcherConfigFromYaml {
5353
pub non_paying: Option<NonPayingConfigFromYaml>,
5454
pub amount_of_proofs_for_min_max_fee: usize,
5555
pub min_bump_percentage: u64,
56+
pub balance_unlock_polling_interval_seconds: u64,
5657
}
5758

5859
#[derive(Debug, Deserialize)]

0 commit comments

Comments
 (0)