Skip to content

Commit

Permalink
tests: Fix compilation errors caused by merge.
Browse files Browse the repository at this point in the history
  • Loading branch information
ceyhunsen committed Sep 9, 2024
1 parent c46d185 commit 345e3a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
5 changes: 1 addition & 4 deletions core/tests/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ use clementine_core::traits::rpc::VerifierRpcClient;
use clementine_core::user::User;
use clementine_core::EVMAddress;
use clementine_core::UTXO;
use clementine_core::{
create_extended_rpc, create_test_config, create_test_config_with_thread_name,
};
use jsonrpsee::http_client::HttpClient;
use jsonrpsee::server::ServerHandle;
use secp256k1::schnorr;
Expand All @@ -28,7 +25,7 @@ use std::net::SocketAddr;
pub async fn run_multiple_deposit(
test_config_name: &str,
) -> Result<(Vec<UTXO>, Vec<schnorr::Signature>), BridgeError> {
let mut config = create_test_config_with_thread_name!(test_config_name);
let mut config = create_test_config_with_thread_name(test_config_name, None).await;
let rpc = create_extended_rpc!(config);

let (_, operators, _) = create_verifiers_and_operators("test_config.toml").await;
Expand Down
4 changes: 1 addition & 3 deletions core/tests/musig2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ use clementine_core::musig2::{
aggregate_nonces, aggregate_partial_signatures, MuSigPartialSignature, MuSigPubNonce,
};
use clementine_core::utils::handle_taproot_witness_new;
use clementine_core::ByteArray32;
use clementine_core::{
actor::Actor,
config::BridgeConfig,
Expand All @@ -15,9 +16,6 @@ use clementine_core::{
transaction_builder::{TransactionBuilder, TxHandler},
utils, ByteArray66,
};
use clementine_core::{
create_extended_rpc, create_test_config, create_test_config_with_thread_name, ByteArray32,
};
use secp256k1::{Keypair, Message};

#[tokio::test]
Expand Down

0 comments on commit 345e3a1

Please sign in to comment.