Correct gas budget

This commit is contained in:
nolash
2021-03-24 08:51:53 +01:00
parent 717156b013
commit b9dc0bcfb4
6 changed files with 5 additions and 6 deletions

File diff suppressed because one or more lines are too long

View File

@@ -38,7 +38,7 @@ class GiftableToken(TxFactory):
@staticmethod
def gas(code=None):
return 1200000
return 1500000
@staticmethod
def abi():

View File

@@ -39,7 +39,6 @@ argparser = argparse.ArgumentParser()
argparser.add_argument('-p', '--provider', dest='p', default='http://localhost:8545', type=str, help='Web3 provider url (http only)')
argparser.add_argument('-w', action='store_true', help='Wait for the last transaction to be confirmed')
argparser.add_argument('-ww', action='store_true', help='Wait for every transaction to be confirmed')
argparser.add_argument('-e', action='store_true', help='Treat all transactions as essential')
argparser.add_argument('-i', '--chain-spec', dest='i', type=str, default='evm:ethereum:1', help='Chain specification string')
argparser.add_argument('-y', '--key-file', dest='y', type=str, help='Ethereum keystore file to use for signing')
argparser.add_argument('--env-prefix', default=os.environ.get('CONFINI_ENV_PREFIX'), dest='env_prefix', type=str, help='environment prefix for variables to overwrite configuration')