commit b29b1fda3f2014f4e71e5a8cac91ba6ed58495bb
parent 3dd67ddab5762a790f0243fab243385375b1e286
Author: lash <dev@holbrook.no>
Date: Sat, 12 Nov 2022 13:33:14 +0000
Add missing bits for flags generation
Diffstat:
3 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/chainlib/eth/runnable/flags.py b/chainlib/eth/runnable/flags.py
@@ -7,9 +7,9 @@ from hexathon import add_0x
cmds = {
- 'gas': [['std_write', 'wallet'], []], #chainlib.eth.cli.argflag_std_write | chainlib.eth.cli.Flag.WALLET,
+ 'gas': [['std_write', 'wallet', 'value'], []],
'info' : [['std_base_read'], ['chain_spec']],
- 'get' : [['std_base_read'], ['chain_spec']],
+ 'get' : [['std_base_read', 'tab'], ['chain_spec']],
'decode': [['std_base', 'chain_spec'], []],
'encode': [['std_write', 'exec' ,'fee', 'fmt_human', 'fmt_wire', 'fmt_rpc'], []],
'count' : [['std_base_read', 'wallet'], []],
diff --git a/setup.cfg b/setup.cfg
@@ -1,6 +1,6 @@
[metadata]
name = chainlib-eth
-version = 0.4.3
+version = 0.4.4
description = Ethereum implementation of the chainlib interface
author = Louis Holbrook
author_email = dev@holbrook.no
diff --git a/setup.py b/setup.py
@@ -1,5 +1,4 @@
from setuptools import setup
-import configparser
import os