Skip to content

Commit

Permalink
Minor improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
popzxc committed Nov 27, 2021
1 parent ea5a1dc commit 552c606
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions core/tests/ts-tests/tests/register-factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,6 @@ Tester.prototype.testRegisterFactory = async function (wallet: Wallet, feeToken:
this.runningFee = this.runningFee.add(withdrawFee);

nftInfo = await wallet.provider.getNFT(nft.id);
expect(nftInfo.currentFactory, 'NFT info after withdrawing is wrong').to.eql(contract.address.toLowerCase());
expect(nftInfo.withdrawnFactory, 'NFT info after withdrawing is wrong').to.eql(contract.address.toLowerCase());
expect(nftInfo.currentFactory, 'NFT info after withdrawing is wrong (current factory)').to.eql(contract.address.toLowerCase());
expect(nftInfo.withdrawnFactory, 'NFT info after withdrawing is wrong (withdrawn factory)').to.eql(contract.address.toLowerCase());
};
2 changes: 1 addition & 1 deletion etc/env/base/eth_sender.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ expected_wait_time_block=30
# Node polling period in seconds.
tx_poll_period=1
# The maximum amount of simultaneously sent Ethereum transactions.
max_txs_in_flight=3
max_txs_in_flight=30
# Whether sender should interact with L1 or not.
is_enabled=true

Expand Down

0 comments on commit 552c606

Please sign in to comment.