Skip to content

Commit c73aefd

Browse files
committed
test
1 parent 13f59d8 commit c73aefd

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

contracts/test/CW20toERC20PointerTest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ describe("CW20 to ERC20 Pointer", function () {
1212
let cw20Pointer;
1313

1414
async function setBalance(addr, balance) {
15-
const resp = await testToken.setBalance(addr, balance);
15+
const resp = await testToken.setBalance(addr, balance, { gasPrice: ethers.parseUnits('100', 'gwei') });
1616
await resp.wait();
1717
}
1818

contracts/test/lib.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ async function passProposal(proposalId, desposit="200000000usei", fees="20000us
284284
throw new Error("could not pass proposal "+proposalId)
285285
}
286286

287-
async function registerPointerForERC20(erc20Address, fees="20000usei", from=adminKeyName) {
287+
async function registerPointerForERC20(erc20Address, fees="25000usei", from=adminKeyName) {
288288
const command = `seid tx evm register-cw-pointer ERC20 ${erc20Address} --from ${from} --fees ${fees} --broadcast-mode block -y -o json`
289289
const output = await execute(command);
290290
const response = JSON.parse(output)

integration_test/dapp_tests/utils.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,7 @@ async function deployUniswapContracts(deployer, testChain, accounts){
213213
// Gets the amount of WETH9 required to instantiate pools by depositing Sei to the contract
214214
let gasEstimate = await weth9.estimateGas.deposit({ value: amountETH })
215215
let gasPrice = await deployer.getGasPrice();
216+
console.log('Depositing weth9');
216217
const txWrap = await weth9.deposit({ value: amountETH, gasPrice, gasLimit: BigNumber.from(gasEstimate).add('100000')});
217218
await txWrap.wait();
218219
console.log(`Deposited ${amountETH.toString()} to WETH9`);

0 commit comments

Comments
 (0)