import SilentPaymentAddress from utils

This commit is contained in:
Sosthene 2024-06-03 18:16:35 +02:00
parent e6007ca0a7
commit cc45650777
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ use sp_client::{
}, },
silentpayments::{ silentpayments::{
bitcoin_hashes::{sha256t_hash_newtype, Hash, HashEngine}, bitcoin_hashes::{sha256t_hash_newtype, Hash, HashEngine},
sending::SilentPaymentAddress, utils::SilentPaymentAddress,
secp256k1::PublicKey secp256k1::PublicKey
}, },
}; };

View File

@ -11,7 +11,7 @@ use sp_client::bitcoin::psbt::raw;
use sp_client::bitcoin::{Psbt, Transaction, Txid}; use sp_client::bitcoin::{Psbt, Transaction, Txid};
use sp_client::bitcoin::{Amount, OutPoint}; use sp_client::bitcoin::{Amount, OutPoint};
use sp_client::bitcoin::consensus::deserialize; use sp_client::bitcoin::consensus::deserialize;
use sp_client::silentpayments::sending::SilentPaymentAddress; use sp_client::silentpayments::utils::SilentPaymentAddress;
use sp_client::spclient::{OwnedOutput, Recipient, SpClient, SpWallet}; use sp_client::spclient::{OwnedOutput, Recipient, SpClient, SpWallet};
use sp_client::constants; use sp_client::constants;