Skip to content

Commit

Permalink
fix: hash in cucumber (#4124)
Browse files Browse the repository at this point in the history
Description
---
Fixes wrong hash in cucumber test.

How Has This Been Tested?
---
` npm test -- --name "As a wallet I want to submit a transaction"`
  • Loading branch information
Cifko authored May 23, 2022
1 parent 46450d5 commit 5d7d55d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration_tests/helpers/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ const getTransactionOutputHash = function (output) {
// features.maturity
Buffer.from([parseInt(output.features.maturity)]),
// features.flags
Buffer.from([output.features.flags]),
Buffer.from(toLittleEndian(output.features.flags, 16)),
]);
// features.parent_public_key
features = Buffer.concat([
Expand Down

0 comments on commit 5d7d55d

Please sign in to comment.