Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
Copy link

Copilot AI Feb 25, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

CI installs Foundry with version: nightly, which can introduce nondeterministic breakages when Foundry releases changes. Consider pinning to a specific nightly (date-based) or using stable so CI remains reproducible; if nightly is required, document why and pin the exact version.

Suggested change
version: nightly
version: stable

Copilot uses AI. Check for mistakes.
- name: Run tests
run: cargo test

Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ postcard = { version = "1.1.3", features = ["use-std"] }
[dev-dependencies]
tokio-test = "0.4"
proptest = "1"
alloy = { version = "1", features = ["node-bindings"] }

# E2E test infrastructure
[[test]]
Expand Down
2 changes: 2 additions & 0 deletions src/payment/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,13 @@
mod cache;
pub mod metrics;
pub mod quote;
pub mod single_node;
mod verifier;
pub mod wallet;

pub use cache::{CacheStats, VerifiedCache};
pub use metrics::QuotingMetricsTracker;
pub use quote::{verify_quote_content, QuoteGenerator, XorName};
pub use single_node::SingleNodePayment;
pub use verifier::{EvmVerifierConfig, PaymentStatus, PaymentVerifier, PaymentVerifierConfig};
pub use wallet::{is_valid_address, parse_rewards_address, WalletConfig};
Loading
Loading