Skip to content

Commit

Permalink
rgb_bundles: input_map HashMap -> BTreeMap
Browse files Browse the repository at this point in the history
  • Loading branch information
zoedberg committed Sep 25, 2024
1 parent 56f8d4c commit af3cac6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion psbt/src/rgb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ pub trait RgbExt {
fn rgb_bundles(&self) -> Result<BTreeMap<ContractId, BundleDichotomy>, RgbPsbtError> {
let mut map = BTreeMap::new();
for contract_id in self.rgb_contract_ids()? {
let mut input_map = HashMap::<CloseMethod, SmallOrdMap<Vin, OpId>>::new();
let mut input_map = BTreeMap::<CloseMethod, SmallOrdMap<Vin, OpId>>::new();
let mut known_transitions =
HashMap::<CloseMethod, SmallOrdMap<OpId, Transition>>::new();
for (opid, vin) in self.rgb_contract_consumers(contract_id)? {
Expand Down

0 comments on commit af3cac6

Please sign in to comment.