Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
YoGhurt111 committed Oct 8, 2024
1 parent fd5c6ee commit 82cff3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/taiko-client/pkg/rpc/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ func BatchGetBlockProofStatus(
}
for i, transition := range transitions {
// no proof on chain
if transition.StateRoot == (common.Hash{}) {
if transition.BlockHash == (common.Hash{}) {
result[i] = &BlockProofStatus{IsSubmitted: false, ParentHeader: parents[i]}
continue
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,7 @@ func (s *ProofSubmitter) BatchSubmitProofs(ctx context.Context, batchProof *proo
"Batch submit block proof",
"batchProofs", batchProof.Proofs,
"proof", common.Bytes2Hex(batchProof.BatchProof),
"blockIds", batchProof.BlockIDs,
"tier", batchProof.Tier,
)
var (
Expand Down

0 comments on commit 82cff3c

Please sign in to comment.