Skip to content

Commit

Permalink
Bump wild to v1.17.0 (#798)
Browse files Browse the repository at this point in the history
  • Loading branch information
dleutenegger authored Nov 28, 2023
1 parent 966aa7a commit 82d7a3a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ crate-type = ["lib", "staticlib", "cdylib"]
name = "uniffi_lipalightninglib"

[dependencies]
chameleon = { git = "https://github.com/getlipa/wild", tag = "v1.16.2" }
crow = { git = "https://github.com/getlipa/wild", tag = "v1.16.2" }
honey-badger = { git = "https://github.com/getlipa/wild", tag = "v1.16.2" }
graphql = { git = "https://github.com/getlipa/wild", tag = "v1.16.2" }
squirrel = { git = "https://github.com/getlipa/wild", tag = "v1.16.2" }
parrot = { git = "https://github.com/getlipa/wild", tag = "v1.16.2" }
chameleon = { git = "https://github.com/getlipa/wild", tag = "v1.17.0" }
crow = { git = "https://github.com/getlipa/wild", tag = "v1.17.0" }
honey-badger = { git = "https://github.com/getlipa/wild", tag = "v1.17.0" }
graphql = { git = "https://github.com/getlipa/wild", tag = "v1.17.0" }
squirrel = { git = "https://github.com/getlipa/wild", tag = "v1.17.0" }
parrot = { git = "https://github.com/getlipa/wild", tag = "v1.17.0" }
perro = { git = "https://github.com/getlipa/perro", tag = "v1.1.0" }

breez-sdk-core = { git = "https://github.com/breez/breez-sdk", tag = "0.2.10" }
Expand Down
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ use crow::{CountryCode, LanguageCode, OfferManager, TopupError, TopupInfo};
pub use crow::{PermanentFailureCode, TemporaryFailureCode};
use data_store::DataStore;
use email_address::EmailAddress;
use honey_badger::{Auth, CustomTermsAndConditions};
use honey_badger::{Auth, TermsAndConditions};
use iban::Iban;
use log::{debug, info, Level};
use logger::init_logger_once;
Expand Down Expand Up @@ -1070,7 +1070,7 @@ impl LightningNode {

pub fn accept_pocket_terms_and_conditions(&self) -> Result<()> {
self.auth
.accept_custom_terms_and_conditions(CustomTermsAndConditions::Pocket)
.accept_terms_and_conditions(TermsAndConditions::Pocket)
.map_runtime_error_to(RuntimeErrorCode::AuthServiceUnavailable)
}

Expand Down Expand Up @@ -1486,7 +1486,7 @@ pub fn accept_terms_and_conditions(environment: EnvironmentCode, seed: Vec<u8>)
let environment = Environment::load(environment);
let seed = sanitize_input::strong_type_seed(&seed)?;
let auth = build_auth(&seed, environment.backend_url)?;
auth.accept_terms_and_conditions()
auth.accept_terms_and_conditions(TermsAndConditions::Lipa)
.map_runtime_error_to(RuntimeErrorCode::AuthServiceUnavailable)
}

Expand Down

0 comments on commit 82d7a3a

Please sign in to comment.