Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Salka1988 committed Oct 9, 2023
1 parent f98e293 commit 6efb18f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/fuels-test-helpers/src/node_types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ impl<'de> DeserializeAs<'de, Word> for HexNumber {
// pad if length < word size
bytes = (0..WORD_SIZE - len)
.map(|_| 0u8)
.chain(bytes.into_iter())
.chain(bytes)
.collect();
}
_ => {}
Expand Down

0 comments on commit 6efb18f

Please sign in to comment.