Skip to content

Commit

Permalink
fix: default max_fee to 1 🔨
Browse files Browse the repository at this point in the history
  • Loading branch information
EvolveArt committed Jul 8, 2022
1 parent a0388b7 commit e0a3280
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/signers.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ def __init__(self, private_key):
self.signer = eth_keys.keys.PrivateKey(private_key)
self.eth_address = int(self.signer.public_key.to_checksum_address(), 0)

async def send_transaction(self, account, to, selector_name, calldata, nonce=None, max_fee=0):
async def send_transaction(self, account, to, selector_name, calldata, nonce=None, max_fee=1):
return await self.send_transactions(account, [(to, selector_name, calldata)], nonce, max_fee)

async def send_transactions(self, account, calls, nonce=None, max_fee=0):
async def send_transactions(self, account, calls, nonce=None, max_fee=1):
if nonce is None:
execution_info = await account.get_nonce().call()
nonce, = execution_info.result
Expand Down

0 comments on commit e0a3280

Please sign in to comment.