Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
greged93 committed Aug 31, 2023
1 parent 26a3b39 commit 00d9c5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/core/src/test_utils/bin/dump-katana.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ async fn main() {
contracts.insert("Kakarot", serde_json::to_value(test_context.kakarot()).unwrap());
contracts.insert("ERC20", serde_json::to_value(test_context.evm_contract("ERC20")).unwrap());
contracts.insert("Counter", serde_json::to_value(test_context.evm_contract("Counter")).unwrap());
contracts.insert(" PlainOpcodes", serde_json::to_value(test_context.evm_contract("PlainOpcodes")).unwrap());
contracts.insert("PlainOpcodes", serde_json::to_value(test_context.evm_contract("PlainOpcodes")).unwrap());
contracts.insert("DeployerAccount", serde_json::to_value(deployer_account).unwrap());

// Dump the contracts information
Expand All @@ -82,7 +82,7 @@ async fn main() {
.url()
.expect("Failed to get Kakarot origin remote url")
.to_string(),
hash: reference.target().unwrap().to_string(),
hash: reference.target().expect("Failed to get commit hash").to_string(),
})
.expect("Failed to get Kakarot submodule head");
let submodules = serde_json::to_string(&submodule).expect("Failed to serialize submodule");
Expand Down

0 comments on commit 00d9c5d

Please sign in to comment.