We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2dce1b commit 2b40ce1Copy full SHA for 2b40ce1
node/src/actors/chain_manager/actor.rs
@@ -874,8 +874,8 @@ impl ChainManager {
874
log::info!("Trying to find and index unspent outputs for {}", own_pkh);
875
self.chain_state.unspent_outputs_pool.visit_with_pkh(
876
own_pkh,
877
- |(output_pointer, (vto, _))| {
878
- own_utxos.insert(*output_pointer, vto.value);
+ |(output_pointer, _)| {
+ own_utxos.insert(*output_pointer, 0);
879
log::debug!(
880
"Found a new unspent output for {}. Total found so far: {}",
881
0 commit comments