Skip to content

Commit

Permalink
Fix after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgranhao committed Feb 6, 2025
1 parent 88c09fc commit 5a763c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/core/src/model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use anyhow::{anyhow, Result};
use async_trait::async_trait;
use boltz_client::{
bitcoin::ScriptBuf,
boltz::{ChainPair, BOLTZ_MAINNET_URL_V2, BOLTZ_REGTEST_URL_V2, BOLTZ_TESTNET_URL_V2},
boltz::{ChainPair, BOLTZ_MAINNET_URL_V2, BOLTZ_REGTEST, BOLTZ_TESTNET_URL_V2},
network::Chain,
swaps::boltz::{
CreateChainResponse, CreateReverseResponse, CreateSubmarineResponse, Leaf, Side, SwapTree,
Expand Down Expand Up @@ -191,7 +191,7 @@ impl Config {
match self.network {
LiquidNetwork::Mainnet => BOLTZ_MAINNET_URL_V2,
LiquidNetwork::Testnet => BOLTZ_TESTNET_URL_V2,
LiquidNetwork::Regtest => BOLTZ_REGTEST_URL_V2,
LiquidNetwork::Regtest => BOLTZ_REGTEST,
}
}
}
Expand Down

0 comments on commit 5a763c5

Please sign in to comment.