Skip to content

Commit

Permalink
Update e2e package-json / Remove indirect dependency use (#21)
Browse files Browse the repository at this point in the history
* update js

Signed-off-by: Naohiro Yoshida <[email protected]>
  • Loading branch information
yoshidan authored Nov 9, 2023
1 parent 67c0529 commit 962d9b7
Show file tree
Hide file tree
Showing 6 changed files with 7,675 additions and 3,583 deletions.
1 change: 1 addition & 0 deletions e2e/contracts/apps/recv.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ module.exports = async (callback) => {
callback()

}catch (e) {
console.log(e)
callback(e);
}
};
3 changes: 2 additions & 1 deletion e2e/contracts/apps/send.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = async (callback) => {

const port = "transfer";
const channel = "channel-0";
const timeoutHeight = 0;
const timeoutHeight = 10000000;
const mintAmount = 100;
const sendingAmount = 20

Expand Down Expand Up @@ -44,6 +44,7 @@ module.exports = async (callback) => {
callback()

}catch (e) {
console.log(e)
callback(e);
}
};
Loading

0 comments on commit 962d9b7

Please sign in to comment.