Skip to content
This repository was archived by the owner on Jan 20, 2026. It is now read-only.

Commit 58e3e48

Browse files
committed
Fix
1 parent 4fcc267 commit 58e3e48

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tools/cmd/seidb/operations/state_size.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,8 +267,8 @@ func printResultsToConsole(moduleResults map[string]*ModuleResult) {
267267
// createStateSizeAnalysis creates a new StateSizeAnalysis from ModuleResult
268268
func createStateSizeAnalysis(blockHeight int64, moduleName string, result *ModuleResult) *utils.StateSizeAnalysis {
269269
// Convert raw data to JSON strings for DynamoDB storage
270-
prefixBreakdown := map[string]map[string]utils.PrefixSize{}
271-
prefixJSON, _ := json.Marshal(prefixBreakdown)
270+
271+
prefixJSON, _ := json.Marshal(result.PrefixSizes)
272272

273273
var contractSlice []utils.ContractSizeEntry
274274
for _, contract := range result.ContractSizes {

0 commit comments

Comments
 (0)