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.
1 parent 588e837 commit 572e190Copy full SHA for 572e190
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
@@ -194,7 +194,7 @@ impl PartiallySignedTransaction {
194
entry.insert((fingerprint1, derivation1));
195
continue
196
197
- return Err(Error::CombineInconsistentKeySources(xpub));
+ return Err(Error::CombineInconsistentKeySources(Box::new(xpub)));
198
199
200
0 commit comments