Skip to content

Commit 2aa3500

Browse files
committed
chore: set switch block at 2_268_375
1 parent 39bbb6d commit 2aa3500

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

aggregator/internal/pkg/aggregator.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ func (agg *Aggregator) Start(ctx context.Context) error {
218218

219219
const MaxSentTxRetries = 5
220220

221-
var switchBlockNumber = uint64(100)
221+
var switchBlockNumber = uint64(2_268_375) // 2_268_375 is the block at sep 3th 15:00
222222

223223
func (agg *Aggregator) handleBlsAggServiceResponse(blsAggServiceResp blsagg.BlsAggregationServiceResponse) {
224224
if blsAggServiceResp.Err != nil {

aggregator/internal/pkg/subscriber.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ func (agg *Aggregator) SubscribeToNewTasks() error {
1010
return err
1111
}
1212

13-
var switchBlockNumber = uint32(100)
13+
var switchBlockNumber = uint64(2_268_375) // 2_268_375 is the block at sep 3th 15:00
1414

1515
for {
1616
select {

operator/pkg/operator.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ func (o *Operator) Start(ctx context.Context) error {
149149
metricsErrChan = make(chan error, 1)
150150
}
151151

152-
var switchBlockNumber = uint32(100)
152+
var switchBlockNumber = uint64(2_268_375) // 2_268_375 is the block at sep 3th 15:00
153153

154154
for {
155155
select {

0 commit comments

Comments
 (0)