We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 417e2f8 commit 6d2aa2aCopy full SHA for 6d2aa2a
1 file changed
examples/l2/crates/l2/src/l2.rs
@@ -27,7 +27,7 @@ impl L2 {
27
config.private_key_store_path.clone(),
28
config.private_key_store_password.clone(),
29
)
30
- .expect("failed to parse private key: {e}");
+ .expect("failed to parse private key");
31
32
let gatewat_provider =
33
AggregationModeGatewayProvider::new_with_signer(config.network.clone(), signer)
@@ -121,7 +121,7 @@ impl L2 {
121
},
122
123
.await
124
- .expect("To be able to check proof status {e}");
+ .expect("To be able to check proof status");
125
126
let merkle_path = match proof_status {
127
ProofStatus::Verified {
0 commit comments