Skip to content

Commit 5f011ab

Browse files
committed
verkle: add logging for proof time and size
Signed-off-by: Ignacio Hagopian <[email protected]>
1 parent 97e6090 commit 5f011ab

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

core/state/access_witness.go

+5
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,10 @@ package state
1818

1919
import (
2020
"fmt"
21+
"time"
2122

2223
"github.com/ethereum/go-ethereum/common"
24+
"github.com/ethereum/go-ethereum/log"
2325
"github.com/ethereum/go-ethereum/params"
2426
"github.com/ethereum/go-ethereum/trie"
2527
"github.com/ethereum/go-ethereum/trie/utils"
@@ -273,10 +275,12 @@ func (aw *AccessWitness) touchAddress(addr []byte, treeIndex uint256.Int, subInd
273275
}
274276

275277
func (aw *AccessWitness) GenerateProofAndSerialize() (*verkle.VerkleProof, verkle.StateDiff, error) {
278+
start := time.Now()
276279
// Signal that we are done sending chunks to load the tree.
277280
aw.treeLoaderQuit <- struct{}{}
278281
// Wait for the background loader to finish loading pending keys.
279282
<-aw.treeLoaderClosed
283+
log.Debug("Waiting for the tree loader to finish took %s", time.Since(start))
280284

281285
// If the background loader encountered an error, return it.
282286
if aw.treeLoaderErr != nil {
@@ -288,6 +292,7 @@ func (aw *AccessWitness) GenerateProofAndSerialize() (*verkle.VerkleProof, verkl
288292
if err != nil {
289293
return nil, nil, fmt.Errorf("generating the witness proof failed: %s", err)
290294
}
295+
291296
return proof, stateDiff, nil
292297
}
293298

trie/verkle.go

+11-1
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,16 @@ package trie
1919
import (
2020
"bytes"
2121
"encoding/binary"
22+
"encoding/json"
2223
"errors"
2324
"fmt"
2425
"math/big"
26+
"time"
2527

2628
"github.com/ethereum/go-ethereum/common"
2729
"github.com/ethereum/go-ethereum/core/types"
2830
"github.com/ethereum/go-ethereum/ethdb"
31+
"github.com/ethereum/go-ethereum/log"
2932
"github.com/ethereum/go-ethereum/trie/trienode"
3033
"github.com/ethereum/go-ethereum/trie/utils"
3134
"github.com/gballet/go-verkle"
@@ -325,16 +328,23 @@ func (trie *VerkleTrie) IsVerkle() bool {
325328
}
326329

327330
func (trie *VerkleTrie) ProveAndSerialize(keys [][]byte, kv map[string][]byte) (*verkle.VerkleProof, verkle.StateDiff, error) {
331+
// TODO: remove verbose logging.
332+
startProofGen := time.Now()
328333
proof, _, _, _, err := verkle.MakeVerkleMultiProof(trie.root, keys)
329334
if err != nil {
330335
return nil, nil, err
331336
}
332337

338+
startProofSerialization := time.Now()
333339
p, kvps, err := verkle.SerializeProof(proof)
334340
if err != nil {
335341
return nil, nil, err
336342
}
337-
343+
proofJson, err := json.Marshal(proof)
344+
if err != nil {
345+
return nil, nil, err
346+
}
347+
log.Debug("Generating the proof", "number of keys", len(keys), "building proof", startProofSerialization.Sub(startProofGen), "serializing proof", time.Since(startProofSerialization), "json encoded size", common.StorageSize(len(proofJson)))
338348
return p, kvps, nil
339349
}
340350

0 commit comments

Comments
 (0)