Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Gavin “yoghurt” Yu committed Feb 4, 2025
1 parent 753ba50 commit 17fbeff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/taiko-client--docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: "Build and Push Multi-Arch Docker Image"

on:
push:
branches: [main, pacaya_fork_client]
branches: [main, pacaya_fork_client, pacaya-height-0]
tags:
- "taiko-alethia-client-v*"
paths:
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol/contracts/layer1/devnet/DevnetInbox.sol
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ contract DevnetInbox is TaikoInbox {
cooldownWindow: 0 hours,
maxSignalsToReceive: 16,
maxBlocksPerBatch: 768,
forkHeights: ITaikoInbox.ForkHeights({ ontake: 0, pacaya: 10 })
forkHeights: ITaikoInbox.ForkHeights({ ontake: 0, pacaya: 0 })
});
}
}
3 changes: 1 addition & 2 deletions packages/taiko-client/pkg/rpc/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import (
"os"
"time"

"github.com/cenkalti/backoff/v4"
"github.com/ethereum/go-ethereum/accounts/abi/bind"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/log"
Expand All @@ -18,7 +17,7 @@ import (

const (
defaultTimeout = 1 * time.Minute
pacayaForkHeightDevnet = 10
pacayaForkHeightDevnet = 0
pacayaForkHeightHekla = 0
pacayaForkHeklaMainnet = 0
pacayaForkHeightPreconfDevnet = 0
Expand Down

0 comments on commit 17fbeff

Please sign in to comment.