Skip to content

Commit 51028fa

Browse files
committed
Merge #224: pset: input: insert non-pset proprietary keys
45267c9 pset: input: insert non-pset proprietary keys (Leonardo Comandini) 7ead9ba elip101: add test for abf serialization roundtrip (Leonardo Comandini) Pull request description: As it is done for pset outputs. ACKs for top commit: apoelstra: ACK 45267c9; successfully ran local tests Tree-SHA512: ec6028f2fb6f591611a8af3ad0979d827d111a228a6e5429512bdbec0342e0a1dfb81d34da74beebfbb696a27bf5049aa99bc27c394afb8378b1a7a6332a452f
2 parents 5a98cc3 + 45267c9 commit 51028fa

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

src/pset/elip101.rs

+27
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ impl Output {
6767
#[cfg(test)]
6868
mod test {
6969
use super::*;
70+
use crate::AssetId;
7071
use crate::encode::{serialize_hex, Encodable};
7172
use crate::hex::{FromHex, ToHex};
7273

@@ -110,4 +111,30 @@ mod test {
110111
assert!(output_hex.contains(ELIP0101_IDENTIFIER));
111112
assert!(output_hex.contains(abf_hex));
112113
}
114+
115+
#[test]
116+
fn abf_roundtrip() {
117+
use crate::pset::PartiallySignedTransaction;
118+
119+
// Set abf on an input and on an output
120+
let abf = AssetBlindingFactor::from_slice(&[3; 32]).unwrap();
121+
let mut pset = PartiallySignedTransaction::new_v2();
122+
let mut input = Input::default();
123+
input.set_abf(abf);
124+
pset.add_input(input);
125+
let mut output = Output {
126+
amount: Some(1),
127+
asset: Some(AssetId::from_slice(&[9; 32]).unwrap()),
128+
..Default::default()
129+
};
130+
output.set_abf(abf);
131+
pset.add_output(output);
132+
133+
// Serialize and deserialize
134+
let bytes = encode::serialize(&pset);
135+
let pset_back = encode::deserialize::<PartiallySignedTransaction>(&bytes).unwrap();
136+
// Check the abf
137+
assert_eq!(pset_back.inputs()[0].get_abf().unwrap().unwrap(), abf);
138+
assert_eq!(pset_back.outputs()[0].get_abf().unwrap().unwrap(), abf);
139+
}
113140
}

src/pset/map/input.rs

+10
Original file line numberDiff line numberDiff line change
@@ -759,8 +759,18 @@ impl Map for Input {
759759
Entry::Occupied(_) => return Err(Error::DuplicateKey(raw_key).into()),
760760
},
761761
}
762+
} else {
763+
match self.proprietary.entry(prop_key) {
764+
Entry::Vacant(empty_key) => {
765+
empty_key.insert(raw_value);
766+
}
767+
Entry::Occupied(_) => {
768+
return Err(Error::DuplicateKey(raw_key).into())
769+
}
770+
}
762771
}
763772
}
773+
764774
_ => match self.unknown.entry(raw_key) {
765775
Entry::Vacant(empty_key) => {
766776
empty_key.insert(raw_value);

0 commit comments

Comments
 (0)