mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-12-14 06:32:33 +01:00
psbt: implement hash preimages fields
This commit is contained in:
@@ -153,6 +153,10 @@ void PSBTInput::Merge(const PSBTInput& input)
|
||||
}
|
||||
|
||||
partial_sigs.insert(input.partial_sigs.begin(), input.partial_sigs.end());
|
||||
ripemd160_preimages.insert(input.ripemd160_preimages.begin(), input.ripemd160_preimages.end());
|
||||
sha256_preimages.insert(input.sha256_preimages.begin(), input.sha256_preimages.end());
|
||||
hash160_preimages.insert(input.hash160_preimages.begin(), input.hash160_preimages.end());
|
||||
hash256_preimages.insert(input.hash256_preimages.begin(), input.hash256_preimages.end());
|
||||
hd_keypaths.insert(input.hd_keypaths.begin(), input.hd_keypaths.end());
|
||||
unknown.insert(input.unknown.begin(), input.unknown.end());
|
||||
|
||||
|
||||
Reference in New Issue
Block a user