From 918a89d5ced7838900854e735f2e48b7da29429d Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Fri, 31 Mar 2023 11:38:01 +0000 Subject: [PATCH] test: fix out of gas --- --- a/tests/src/eth/fractionalizer/fractionalizer.test.ts +++ b/tests/src/eth/fractionalizer/fractionalizer.test.ts @@ -197,7 +197,7 @@ }); itEth('Test fractionalizer NFT <-> RFT mapping ', async ({helper}) => { - const owner = await helper.eth.createAccountWithBalance(donor, 20n); + const owner = await helper.eth.createAccountWithBalance(donor, 200n); const {contract: fractionalizer, rftCollectionAddress} = await initContract(helper, owner); const {rftTokenAddress, nftCollectionAddress, nftTokenId} = await mintRFTToken(helper, owner, fractionalizer, 100n); @@ -386,7 +386,7 @@ }); itEth('call rft2nft without owning all RFT pieces', async ({helper}) => { - const owner = await helper.eth.createAccountWithBalance(donor, 20n); + const owner = await helper.eth.createAccountWithBalance(donor, 200n); const receiver = await helper.eth.createAccountWithBalance(donor, 10n); const {contract: fractionalizer, rftCollectionAddress} = await initContract(helper, owner); -- gitstuff