Skip to content

Commit 6c101f8

Browse files
author
colinlyguo
committed
revert
1 parent bea228c commit 6c101f8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

common/types/message/message.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -411,10 +411,10 @@ type OpenVMBundleProof struct {
411411
// | 32 | 32 | accs[1] | accumulator 2 |
412412
// | 32*i ... | 32 | accs[i] | accumulator i ... |
413413
// | 352 | 32 | accs[11] | accumulator 12 |
414-
// | 1472 | dynamic | proof | proof bytes |
414+
// | 384 | dynamic | proof | proof bytes |
415415
func (p *OpenVMBundleProof) Proof() []byte {
416-
proofBytes := make([]byte, 0, 1472+len(p.EvmProof.Proof))
417-
proofBytes = append(proofBytes, p.EvmProof.Instances[:1472]...)
416+
proofBytes := make([]byte, 0, 384+len(p.EvmProof.Proof))
417+
proofBytes = append(proofBytes, p.EvmProof.Instances[:384]...)
418418
return append(proofBytes, p.EvmProof.Proof...)
419419
}
420420

0 commit comments

Comments
 (0)