-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Logan Nguyen <[email protected]>
- Loading branch information
1 parent
4bf0a5d
commit 6ad1ff3
Showing
1 changed file
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -172,7 +172,7 @@ describe('HIP583 Test Suite', function () { | |
}); | ||
}); | ||
|
||
describe('Fungible Token Test', function () { | ||
describe.only('Fungible Token Test', function () { | ||
let hollowWalletAddress; | ||
let amount; | ||
|
||
|
@@ -260,9 +260,12 @@ describe('HIP583 Test Suite', function () { | |
//sending some HBARs, so the hollow account have some to cover the transaction | ||
await signers[0].sendTransaction({ | ||
to: hollowWalletAddress, | ||
value: ethers.parseEther('14'), | ||
value: ethers.parseEther('14'), // in [email protected], 14 HBARs works fine, and line 267 will show 14000000000000000000n. But in v0.51.0-alpha.4, 14 HBARs does not work, and and line 267 will show 0n. | ||
}); | ||
|
||
console.log(hollowWalletAddress); | ||
console.log(await ethers.provider.getBalance(hollowWalletAddress)); | ||
|
||
await utils.updateAccountKeysViaHapi( | ||
[ | ||
await tokenCreateContract.getAddress(), | ||
|