Skip to content

Commit

Permalink
update js code
Browse files Browse the repository at this point in the history
  • Loading branch information
lufaque committed Nov 28, 2024
1 parent dde5498 commit a2f63ac
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion tasks/CLFScripts/dist/infra/DST.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
const encodedReceiver = Functions.encodeUint256(BigInt(receiver));
const encodedAmount = Functions.encodeUint256(BigInt(amount));
const encodedCompressedData = ethers.getBytes(compressedDstSwapData);
console.log(encodedReceiver, encodedAmount, encodedCompressedData);
const totalLength = encodedReceiver.length + encodedAmount.length + encodedCompressedData.length;
const result = new Uint8Array(totalLength);
let offset = 0;
Expand Down
2 changes: 1 addition & 1 deletion tasks/CLFScripts/dist/infra/DST.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions tasks/CLFScripts/src/infra/DST.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
const encodedAmount = Functions.encodeUint256(BigInt(amount));
const encodedCompressedData = ethers.getBytes(compressedDstSwapData);

console.log(encodedReceiver, encodedAmount, encodedCompressedData);

const totalLength = encodedReceiver.length + encodedAmount.length + encodedCompressedData.length;
const result = new Uint8Array(totalLength);

Expand Down

0 comments on commit a2f63ac

Please sign in to comment.