We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bea228c commit 6c101f8Copy full SHA for 6c101f8
common/types/message/message.go
@@ -411,10 +411,10 @@ type OpenVMBundleProof struct {
411
// | 32 | 32 | accs[1] | accumulator 2 |
412
// | 32*i ... | 32 | accs[i] | accumulator i ... |
413
// | 352 | 32 | accs[11] | accumulator 12 |
414
-// | 1472 | dynamic | proof | proof bytes |
+// | 384 | dynamic | proof | proof bytes |
415
func (p *OpenVMBundleProof) Proof() []byte {
416
- proofBytes := make([]byte, 0, 1472+len(p.EvmProof.Proof))
417
- proofBytes = append(proofBytes, p.EvmProof.Instances[:1472]...)
+ proofBytes := make([]byte, 0, 384+len(p.EvmProof.Proof))
+ proofBytes = append(proofBytes, p.EvmProof.Instances[:384]...)
418
return append(proofBytes, p.EvmProof.Proof...)
419
}
420
0 commit comments