Bump version
This commit is contained in:
parent
a3f8f92f9c
commit
6f28311e52
@ -10,8 +10,7 @@ from chainlib.cli import (
|
|||||||
argflag_std_base,
|
argflag_std_base,
|
||||||
Config as BaseConfig,
|
Config as BaseConfig,
|
||||||
Wallet as BaseWallet,
|
Wallet as BaseWallet,
|
||||||
Rpc as BaseRpc,
|
Rpc as BaseRpc, Flag,
|
||||||
Flag,
|
|
||||||
)
|
)
|
||||||
from crypto_dev_signer.eth.signer import ReferenceSigner as EIP155Signer
|
from crypto_dev_signer.eth.signer import ReferenceSigner as EIP155Signer
|
||||||
|
|
||||||
@ -107,6 +106,7 @@ class Config(BaseConfig):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def from_args(cls, args, arg_flags=0x0f, env=os.environ, extra_args={}, base_config_dir=None, default_config_dir=None, user_config_dir=None, default_fee_limit=None, logger=None, load_callback=None):
|
def from_args(cls, args, arg_flags=0x0f, env=os.environ, extra_args={}, base_config_dir=None, default_config_dir=None, user_config_dir=None, default_fee_limit=None, logger=None, load_callback=None):
|
||||||
|
super(Config, cls).override_defaults(base_dir=cls.default_base_config_dir)
|
||||||
if default_fee_limit == None:
|
if default_fee_limit == None:
|
||||||
default_fee_limit = cls.default_fee_limit
|
default_fee_limit = cls.default_fee_limit
|
||||||
config = BaseConfig.from_args(args, arg_flags=arg_flags, env=env, extra_args=extra_args, base_config_dir=base_config_dir, default_config_dir=default_config_dir, user_config_dir=user_config_dir, default_fee_limit=default_fee_limit, logger=logger, load_callback=load_callback)
|
config = BaseConfig.from_args(args, arg_flags=arg_flags, env=env, extra_args=extra_args, base_config_dir=base_config_dir, default_config_dir=default_config_dir, user_config_dir=user_config_dir, default_fee_limit=default_fee_limit, logger=logger, load_callback=load_callback)
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[rpc]
|
[rpc]
|
||||||
http_provider = http://localhost:8545
|
http_provider = http://localhost:8545
|
||||||
provider =
|
provider = http://localhost:8545
|
||||||
auth =
|
auth =
|
||||||
credentials =
|
credentials =
|
||||||
dialect = default
|
dialect = default
|
||||||
|
@ -3,5 +3,5 @@ pysha3==1.0.2
|
|||||||
hexathon~=0.0.1a8
|
hexathon~=0.0.1a8
|
||||||
websocket-client==0.57.0
|
websocket-client==0.57.0
|
||||||
potaahto~=0.0.1a1
|
potaahto~=0.0.1a1
|
||||||
chainlib==0.0.9a9
|
chainlib==0.0.9a10
|
||||||
confini>=0.4.1a1,<0.5.0
|
confini>=0.4.1a1,<0.5.0
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
set -e
|
set -e
|
||||||
set -x
|
set -x
|
||||||
#export PYTHONPATH=${PYTHONPATH:.}
|
export PYTHONPATH=${PYTHONPATH:.}
|
||||||
for f in `ls tests/*.py`; do
|
for f in `ls tests/*.py`; do
|
||||||
python $f
|
python $f
|
||||||
done
|
done
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[metadata]
|
[metadata]
|
||||||
name = chainlib-eth
|
name = chainlib-eth
|
||||||
version = 0.0.9a12
|
version = 0.0.9a13
|
||||||
description = Ethereum implementation of the chainlib interface
|
description = Ethereum implementation of the chainlib interface
|
||||||
author = Louis Holbrook
|
author = Louis Holbrook
|
||||||
author_email = dev@holbrook.no
|
author_email = dev@holbrook.no
|
||||||
|
Loading…
Reference in New Issue
Block a user