chainlib

Generic blockchain access library and tooling
Log | Files | Refs | README | LICENSE

commit 45785c8e9e3e6df8e88f72bfabe7426ca50d8b83
parent b002976ebd1b90decf6dc66f8ba87f492119f03e
Author: lash <dev@holbrook.no>
Date:   Fri,  6 May 2022 07:47:04 +0000

Remove superfluous arguments for settings instantiation

Diffstat:
MCHANGELOG | 2++
Mchainlib/settings.py | 2+-
Msetup.cfg | 2+-
3 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG b/CHANGELOG @@ -1,3 +1,5 @@ +- 0.1.3 + * Remove superfluous arguments for chain settings instantiation - 0.1.2 * Upgrade hexathon dep - 0.1.1 diff --git a/chainlib/settings.py b/chainlib/settings.py @@ -4,7 +4,7 @@ from .chain import ChainSpec class ChainSettings: - def __init__(self, include_sync=False, include_queue=False): + def __init__(self): self.o = {} self.get = self.o.get diff --git a/setup.cfg b/setup.cfg @@ -3,7 +3,7 @@ name=chainlib license=WTFPL2 author_email=dev@holbrook.no description=Generic blockchain access library and tooling -version=0.1.2 +version=0.1.3 url=https://gitlab.com/chaintools/chainlib author=Louis Holbrook