Skip to content

Commit

Permalink
debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
UMR1352 committed Nov 27, 2024
1 parent 14fc0f1 commit da2c4a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion identity_iota_core/tests/e2e/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ async fn get_active_address() -> anyhow::Result<IotaAddress> {
.output()
.await
.context("Failed to execute command")
.and_then(|output| Ok(serde_json::from_slice::<IotaAddress>(&output.stdout)?))
.and_then(|output| Ok(serde_json::from_slice::<IotaAddress>(dbg!(&output.stdout))?))
}

async fn publish_package(active_address: IotaAddress) -> anyhow::Result<ObjectID> {
Expand Down

0 comments on commit da2c4a3

Please sign in to comment.