mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 12:19:24 +00:00
Correct processor docker tests encoding of Bitcoin addresses in OutInstructions
This commit is contained in:
@@ -519,7 +519,12 @@ impl Wallet {
|
|||||||
match self {
|
match self {
|
||||||
Wallet::Bitcoin { public_key, .. } => {
|
Wallet::Bitcoin { public_key, .. } => {
|
||||||
use bitcoin_serai::bitcoin::ScriptBuf;
|
use bitcoin_serai::bitcoin::ScriptBuf;
|
||||||
ExternalAddress::new(ScriptBuf::new_p2pkh(&public_key.pubkey_hash()).into()).unwrap()
|
ExternalAddress::new(
|
||||||
|
networks::bitcoin::Address::new(ScriptBuf::new_p2pkh(&public_key.pubkey_hash()))
|
||||||
|
.unwrap()
|
||||||
|
.into(),
|
||||||
|
)
|
||||||
|
.unwrap()
|
||||||
}
|
}
|
||||||
Wallet::Ethereum { key, .. } => ExternalAddress::new(
|
Wallet::Ethereum { key, .. } => ExternalAddress::new(
|
||||||
ethereum_serai::crypto::address(&(ciphersuite::Secp256k1::generator() * key)).into(),
|
ethereum_serai::crypto::address(&(ciphersuite::Secp256k1::generator() * key)).into(),
|
||||||
|
|||||||
Reference in New Issue
Block a user