Skip to content

Commit

Permalink
debug error
Browse files Browse the repository at this point in the history
  • Loading branch information
UMR1352 committed Nov 28, 2024
1 parent b36cd43 commit 8ddb9af
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 @@ -90,7 +90,7 @@ pub async fn get_client() -> anyhow::Result<TestClient> {
address,
storage,
})
}.inspect_err(|e: &anyhow::Error| {dbg!(e); dbg!(e.source());})
}.inspect_err(|e: &anyhow::Error| {println!("{e}"); println!("{:?}", e.source());})

Check failure on line 93 in identity_iota_core/tests/e2e/common.rs

View workflow job for this annotation

GitHub Actions / clippy

current MSRV (Minimum Supported Rust Version) is `1.65.0` but this item is stable since `1.76.0`

error: current MSRV (Minimum Supported Rust Version) is `1.65.0` but this item is stable since `1.76.0` --> identity_iota_core/tests/e2e/common.rs:93:5 | 93 | }.inspect_err(|e: &anyhow::Error| {println!("{e}"); println!("{:?}", e.source());}) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#incompatible_msrv = note: `-D clippy::incompatible-msrv` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::incompatible_msrv)]`
}

async fn init(iota_client: &IotaClient) -> anyhow::Result<ObjectID> {
Expand Down

0 comments on commit 8ddb9af

Please sign in to comment.