We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 645ab64 + 572e190 commit c2d06a2Copy full SHA for c2d06a2
src/util/psbt/error.rs
@@ -80,7 +80,7 @@ pub enum Error {
80
},
81
/// Conflicting data during combine procedure:
82
/// global extended public key has inconsistent key sources
83
- CombineInconsistentKeySources(ExtendedPubKey),
+ CombineInconsistentKeySources(Box<ExtendedPubKey>),
84
/// Serialization error in bitcoin consensus-encoded structures
85
ConsensusEncoding,
86
}
src/util/psbt/mod.rs
@@ -192,7 +192,7 @@ impl PartiallySignedTransaction {
192
entry.insert((fingerprint1, derivation1));
193
continue
194
195
- return Err(Error::CombineInconsistentKeySources(xpub));
+ return Err(Error::CombineInconsistentKeySources(Box::new(xpub)));
196
197
198
0 commit comments