Skip to content

Commit 6edbe3a

Browse files
committed
fix: resolve CI failures in SDK and example code
This commit addresses all CI failures including: - Fixed AtomicU32 Clone trait issue in MockSubmitter by removing Clone derive - Fixed clippy uninlined_format_args warnings in example code - Fixed incorrect test assertions (data size and CID checks) - Fixed doctest imports (CidCodec and HashAlgorithm now from types module) - Applied rustfmt formatting to all modified files All checks now pass: ✓ cargo +nightly fmt --all -- --check ✓ taplo format --check ✓ zepter run ✓ cargo clippy --all-targets --all-features --workspace ✓ cargo test -p bulletin-sdk-rust ✓ cargo test -p rust-authorize-and-store
1 parent 48fcd23 commit 6edbe3a

File tree

5 files changed

+462
-471
lines changed

5 files changed

+462
-471
lines changed

examples/rust-authorize-and-store/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ path = "src/main.rs"
1212
bulletin-sdk-rust = { path = "../../sdk/rust" }
1313
clap = { version = "4.2", features = ["derive"] }
1414
subxt = "0.37"
15-
subxt-signer = { version = "0.37", features = ["subxt", "sr25519"] }
15+
subxt-signer = { version = "0.37", features = ["sr25519", "subxt"] }
1616
sp-runtime = { workspace = true }
1717
tokio = { version = "1.40", features = ["full"] }
1818
async-trait = "0.1"

0 commit comments

Comments
 (0)