Skip to content

Commit 93a1066

Browse files
committed
feat: fixed cmd
1 parent d54d147 commit 93a1066

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

fendermint/app/src/cmd/proof_cache.rs

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -165,12 +165,9 @@ fn get_proof(db_path: &Path, instance_id: u64) -> anyhow::Result<()> {
165165
);
166166

167167
if let Some(proof_bundle) = &entry.proof_bundle {
168-
println!(
169-
" Storage Proofs: {}",
170-
entry.proof_bundle.storage_proofs.len()
171-
);
172-
println!(" Event Proofs: {}", entry.proof_bundle.event_proofs.len());
173-
println!(" Witness Blocks: {}", entry.proof_bundle.blocks.len());
168+
println!(" Storage Proofs: {}", proof_bundle.storage_proofs.len());
169+
println!(" Event Proofs: {}", proof_bundle.event_proofs.len());
170+
println!(" Witness Blocks: {}", proof_bundle.blocks.len());
174171
println!();
175172
} else {
176173
println!(" No proof bundle found");

0 commit comments

Comments
 (0)