Skip to content

Commit

Permalink
test: 2
Browse files Browse the repository at this point in the history
  • Loading branch information
LijuJoseJJ committed Apr 27, 2023
1 parent 20cba2e commit f98bde4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions bin/setup-nightfall
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ if [ "$SKIP_NPM_CI" == "" ]; then
# Install node dependencies
npm ci
cd cli && npm ci && cd ..
cd common-files && npm ci && cd ..
fi

OS_ARCH=$(uname -m)
Expand Down
1 change: 1 addition & 0 deletions common-files/classes/transaction.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ const arrayEquality = (as, bs) => {
};

export const packTransactionInfo = (value, fee, circuitHash, tokenType) => {
console.log(generalise(value), '--generalise(value)--');
const valuePacked = generalise(value).hex(14).slice(2);
const feePacked = generalise(fee).hex(12).slice(2);
const circuitHashPacked = generalise(circuitHash).hex(5).slice(2);
Expand Down

0 comments on commit f98bde4

Please sign in to comment.