Skip to content
This repository has been archived by the owner on May 11, 2024. It is now read-only.

Commit

Permalink
chore(ci): update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha committed Feb 28, 2023
1 parent 2f940d6 commit 9f27e15
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: "Push docker image to GCR"

on:
push:
branches: [main,remove-pool-content-splitter]
branches: [main]
tags:
- "v*"

Expand Down
3 changes: 0 additions & 3 deletions prover/prover.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,6 @@ func InitFromConfig(ctx context.Context, p *Prover, cfg *Config) (err error) {
p.proverAddress = crypto.PubkeyToAddress(p.cfg.L1ProverPrivKey.PublicKey)

chBufferSize := p.protocolConfigs.MaxNumBlocks.Uint64()
if chBufferSize >= 1<<16 {
chBufferSize = 1<<16 - 1
}
p.blockProposedCh = make(chan *bindings.TaikoL1ClientBlockProposed, chBufferSize)
p.blockVerifiedCh = make(chan *bindings.TaikoL1ClientBlockVerified, chBufferSize)
p.proveValidProofCh = make(chan *proofProducer.ProofWithHeader, chBufferSize)
Expand Down

0 comments on commit 9f27e15

Please sign in to comment.