Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
ielashi committed Apr 8, 2024
1 parent 2149ee7 commit b7950d2
Showing 1 changed file with 16 additions and 17 deletions.
33 changes: 16 additions & 17 deletions bootstrap/state-builder/src/build_address_utxos.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,23 +75,22 @@ fn main() {
if let Some(address) = address {
let address: Address = address.into();

address_utxos
.insert(
Blob::try_from(
AddressUtxo {
address,
height,
outpoint: OutPoint {
txid: txid.clone(),
vout,
},
}
.to_bytes()
.as_ref(),
)
.unwrap(),
(),
);
address_utxos.insert(
Blob::try_from(
AddressUtxo {
address,
height,
outpoint: OutPoint {
txid: txid.clone(),
vout,
},
}
.to_bytes()
.as_ref(),
)
.unwrap(),
(),
);
}
}

Expand Down

0 comments on commit b7950d2

Please sign in to comment.