Skip to content

Commit fe85dd8

Browse files
committed
build
1 parent 780d8a1 commit fe85dd8

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

Diff for: .github/workflows/taiko-client--docker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: "Build and Push Multi-Arch Docker Image"
22

33
on:
44
push:
5-
branches: [main, pacaya_fork_client, pacaya-height-0]
5+
branches: [main, pacaya-height-0-yg1]
66
tags:
77
- "taiko-alethia-client-v*"
88
paths:

Diff for: .github/workflows/taiko-client--pages.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: "Taiko Client Soft Blocks Documentation"
22

33
on:
44
push:
5-
branches: [main, pacaya-height-0-yg1]
5+
branches: [main]
66
paths:
77
- "packages/taiko-client/**"
88

Diff for: packages/taiko-client/prover/proof_submitter/proof_buffer.go

-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ func (pb *ProofBuffer) Write(item *producer.ProofResponse) (int, error) {
3939
if len(pb.buffer)+1 > int(pb.MaxLength) {
4040
return len(pb.buffer), errBufferOverflow
4141
}
42-
4342
pb.buffer = append(pb.buffer, item)
4443
pb.lastUpdatedAt = time.Now()
4544
return len(pb.buffer), nil

0 commit comments

Comments
 (0)