Skip to content
Snippets Groups Projects
Commit ea9a1871 authored by adorda's avatar adorda
Browse files

fixes

parent ecd2194c
No related branches found
No related tags found
1 merge request!1Development
......@@ -25,7 +25,7 @@ class Command(BaseCommand):
parser.add_argument('--is_poa', help="Is POA network", action='store_false')
parser.add_argument('--account', help='Account a usar', action=str)
parser.add_argument('--bytecode', help='Path del bytecode', action=str)
parser.add_argument('--abi', help='Path del abi', action=str)
parser.add_argument('--abi.json', help='Path del abi.json', action=str)
parser.add_argument('--gas', help='Gas a usar', action=int)
parser.set_defaults(node_url=None, account=None, bytecode=None, abi=None, gas=None, is_poa=False)
......
......@@ -34,5 +34,6 @@ CONSTANCE_CONFIG = {
'ABI': ('', 'Contract ABI', str),
'IS_POA': (False, 'Is Proof of Authority network', bool),
'PASSPHRASE': ('', 'Default account passphrase', str),
'BYTECODE': ('0x0', 'Smart Contract Bytecode', str)
'BYTECODE': ('0x0', 'Smart Contract Bytecode', str),
'FROM_BLOCK': (0, "Start search from block", int),
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment