mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-10 13:09:24 +00:00
Smash serai-client so the processors don't need the entire lib to access their specific code
We prior controlled this with feature flags. It's just better to define their own crates.
This commit is contained in:
@@ -6,7 +6,7 @@ use ciphersuite_kp256::Secp256k1;
|
||||
|
||||
use bitcoin_serai::bitcoin::block::{Header, Block as BBlock};
|
||||
|
||||
use serai_client::networks::bitcoin::Address;
|
||||
use serai_client_bitcoin::Address;
|
||||
|
||||
use serai_db::Db;
|
||||
use primitives::{ReceivedOutput, EventualityTracker};
|
||||
|
||||
@@ -13,14 +13,12 @@ use bitcoin_serai::{
|
||||
use borsh::{BorshSerialize, BorshDeserialize};
|
||||
use serai_db::Get;
|
||||
|
||||
use serai_client::{
|
||||
primitives::{
|
||||
coin::ExternalCoin,
|
||||
balance::{Amount, ExternalBalance},
|
||||
address::ExternalAddress,
|
||||
},
|
||||
networks::bitcoin::Address,
|
||||
use serai_primitives::{
|
||||
coin::ExternalCoin,
|
||||
balance::{Amount, ExternalBalance},
|
||||
address::ExternalAddress,
|
||||
};
|
||||
use serai_client_bitcoin::Address;
|
||||
|
||||
use primitives::{OutputType, ReceivedOutput};
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@ use bitcoin_serai::{
|
||||
|
||||
use borsh::{BorshSerialize, BorshDeserialize};
|
||||
|
||||
use serai_client::networks::bitcoin::Address;
|
||||
use serai_client_bitcoin::Address;
|
||||
|
||||
use crate::output::OutputId;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user