From af3cac6714cdbfa54461fcb273b0662ecb575a92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zoe=20Faltib=C3=A0?= Date: Wed, 25 Sep 2024 15:17:13 +0200 Subject: [PATCH] rgb_bundles: input_map HashMap -> BTreeMap --- psbt/src/rgb.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/psbt/src/rgb.rs b/psbt/src/rgb.rs index 08a4797..1f77816 100644 --- a/psbt/src/rgb.rs +++ b/psbt/src/rgb.rs @@ -170,7 +170,7 @@ pub trait RgbExt { fn rgb_bundles(&self) -> Result, RgbPsbtError> { let mut map = BTreeMap::new(); for contract_id in self.rgb_contract_ids()? { - let mut input_map = HashMap::>::new(); + let mut input_map = BTreeMap::>::new(); let mut known_transitions = HashMap::>::new(); for (opid, vin) in self.rgb_contract_consumers(contract_id)? {