Skip to content

WIP Solana-Connector #1590

WIP Solana-Connector

WIP Solana-Connector #1590

Triggered via pull request February 27, 2025 19:30
Status Success
Total duration 31m 8s
Artifacts

pr-test-cargo.yaml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

1 warning
test-cargo: tc-cli/src/main.rs#L212
warning: unused `Result` that must be used --> tc-cli/src/main.rs:212:3 | 212 | std::io::stdout().flush(); | ^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: this `Result` may be an `Err` variant, which should be handled = note: `#[warn(unused_must_use)]` on by default help: use `let _ = ...` to ignore the resulting value | 212 | let _ = std::io::stdout().flush(); | +++++++