Skip to content

Commit

Permalink
Update sdk/src/types/block/payload/transaction/essence/regular.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Thibault Martinez <[email protected]>
  • Loading branch information
Thoralf-M and thibault-martinez authored Dec 6, 2023
1 parent 94e6b2d commit 47f45c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/src/types/block/payload/transaction/essence/regular.rs
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ fn verify_inputs_packable<const VERIFY: bool>(inputs: &[Input], _visitor: &Proto
fn verify_outputs<const VERIFY: bool>(outputs: &[Output], visitor: &ProtocolParameters) -> Result<(), Error> {
if VERIFY {
let mut amount_sum: u64 = 0;
let mut total_native_tokens: HashSet<TokenId> = HashSet::new();
let mut total_native_tokens = HashSet::<TokenId>::new();
let mut chain_ids = HashSet::new();

for output in outputs.iter() {
Expand Down

0 comments on commit 47f45c6

Please sign in to comment.