Skip to content

Commit

Permalink
pretty
Browse files Browse the repository at this point in the history
  • Loading branch information
dzmitry-lahoda committed Apr 12, 2024
1 parent 5cd348e commit 03c6b88
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ num-traits = { version = "^0.2.18", default-features = false }

ibc-proto = { version = "0.39.1", default-features = false }
serde-json-wasm = { version = "1.0.0", default-features = false }
serde_json ={ version = "1.0.64", default-features = false, features = [] }

clap = { version = "^4.5.4", features = ["derive"], default-features = false}
cosmrs = { version = "^0.16.0", features = [
Expand Down
3 changes: 2 additions & 1 deletion mantis/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,5 @@ bounded-collections = {workspace = true, default-features = false, features = ["
[dev-dependencies]
cw-multi-test = { workspace = true }
cw-orch = { workspace = true}
rustfmt-wrapper = "0.2.1"
rustfmt-wrapper = "0.2.1"
serde_json = { workspace = true }
2 changes: 1 addition & 1 deletion mantis/node/tests/cvms.rs
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ async fn cvm_devnet_case() {
let solution =
mantis_node::mantis::blackbox::solve::<True>(active_orders, &alice, &tip, cvm_glt, router)
.await;
panic!("solution: {:?}", solution);
panic!("solution: {:?}", serde_json::ser::to_string_pretty(&solution));
}

enum True {}
Expand Down

0 comments on commit 03c6b88

Please sign in to comment.