Skip to content

Commit

Permalink
chore: fix CI failures
Browse files Browse the repository at this point in the history
  • Loading branch information
kamirr committed Aug 8, 2024
1 parent fe89400 commit 6bdf4f5
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion core/payment/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ uint = "0.7"
uuid = { version = "0.8", features = ["v4"] }

[dev-dependencies]
ya-client = "0.8"
ya-client = "0.9"
ya-dummy-driver = "0.3"
ya-erc20-driver = "0.4"
ya-net = { version = "0.3", features = ["service"] }
Expand Down
2 changes: 0 additions & 2 deletions core/payment/examples/debit_note_flow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,9 @@ async fn main() -> anyhow::Result<()> {
address: None, // Use default address (i.e. identity)
payment_platform: Some(PaymentPlatformEnum::PaymentPlatformName(args.platform)),
total_amount: BigDecimal::from(10u64),
timeout: None,
make_deposit: false,
deposit: None,
timeout: None,
make_deposit: false,
})
.await?;
log::info!("Allocation created.");
Expand Down
1 change: 1 addition & 0 deletions core/payment/examples/payment_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,7 @@ async fn main() -> anyhow::Result<()> {
requestor_addr.clone(),
args.network.clone(),
None,
false,
))
.await??;
bus::service(driver_bus_id(driver_name))
Expand Down
2 changes: 1 addition & 1 deletion core/vpn/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ packet-trace-enable = ["ya-packet-trace/enable"]
default = []

[dev-dependencies]
ya-client = "0.8"
ya-client = "0.9"
actix-rt = "2.7"
sha3 = "0.8.2"
structopt = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion utils/manifest-utils/src/keystore/x509_keystore.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use super::{
RemoveResponse, SignatureVerifier,
};
use anyhow::bail;
use chrono::{DateTime, Duration, NaiveDateTime, TimeZone, Utc};
use chrono::{DateTime, Duration, Utc};
use golem_certificate::schemas::certificate::Fingerprint;
use openssl::{
asn1::{Asn1Time, Asn1TimeRef},
Expand Down

0 comments on commit 6bdf4f5

Please sign in to comment.