Skip to content

Commit

Permalink
Fix bug with redemer / input index
Browse files Browse the repository at this point in the history
  • Loading branch information
gostkin committed Dec 7, 2023
1 parent f1d465c commit e35b392
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion indexer/tasks/src/multiera/multiera_projected_nft.rs
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ fn handle_claims_and_partial_withdraws(
*partially_withdrawn
.entry(input.hash().to_vec())
.or_insert(BTreeMap::new())
.entry(input_index as i64)
.entry(input.index() as i64)
.or_default() = current_input_partial_withrawal;
}
}
Expand Down

0 comments on commit e35b392

Please sign in to comment.