Skip to content

Commit

Permalink
Update rpc_batch2.spec.ts
Browse files Browse the repository at this point in the history
Signed-off-by: Logan Nguyen <[email protected]>
  • Loading branch information
quiet-node committed Dec 23, 2024
1 parent 91f28c0 commit 7477c63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/server/tests/acceptance/rpc_batch2.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,7 @@ describe('@api-batch-2 RPC Server Acceptance Tests', function () {

const mainContract = new ethers.Contract(mainContractAddress, TokenCreateJson.abi, accounts[0].wallet);
const tx = await mainContract.createNonFungibleTokenPublic(account.wallet.address, {
value: BigInt('30000000000000000000'),
value: BigInt('50000000000000000000'),
...Helper.GAS.LIMIT_5_000_000,
});
global.logger.debug(`Start creating NFT HTS Token`);
Expand All @@ -777,7 +777,7 @@ describe('@api-batch-2 RPC Server Acceptance Tests', function () {
before(async () => {
global.logger.debug(`Starting eth_getCode test suite`);
mainContract = await Utils.deployContract(TokenCreateJson.abi, TokenCreateJson.bytecode, accounts[3].wallet);
global.logger.debug(`Finished deploying mainContract: ${JSON.stringify(mainContract)}`);
global.logger.debug(`Finished deploying mainContract: ${JSON.stringify(mainContract.target)}`);
mainContractAddress = mainContract.target as string;

const accountWithContractIdKey = await servicesNode.createAccountWithContractIdKey(
Expand Down

0 comments on commit 7477c63

Please sign in to comment.