Skip to content

Commit 6d2aa2a

Browse files
remove other extra unnecesary error prints
1 parent 417e2f8 commit 6d2aa2a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • examples/l2/crates/l2/src

examples/l2/crates/l2/src/l2.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ impl L2 {
2727
config.private_key_store_path.clone(),
2828
config.private_key_store_password.clone(),
2929
)
30-
.expect("failed to parse private key: {e}");
30+
.expect("failed to parse private key");
3131

3232
let gatewat_provider =
3333
AggregationModeGatewayProvider::new_with_signer(config.network.clone(), signer)
@@ -121,7 +121,7 @@ impl L2 {
121121
},
122122
)
123123
.await
124-
.expect("To be able to check proof status {e}");
124+
.expect("To be able to check proof status");
125125

126126
let merkle_path = match proof_status {
127127
ProofStatus::Verified {

0 commit comments

Comments
 (0)