eth-erc20

ERC20 interface and example giftable token contract
Log | Files | Refs | LICENSE

commit 1ed9da5a428d15661c51f6214c852f73c6a063a4
parent aed92e96d34f3efb685ee2e984e8ba19157b8efe
Author: lash <dev@holbrook.no>
Date:   Tue,  5 Apr 2022 19:14:54 +0000

remove bogus spammy error

Diffstat:
Mpython/eth_erc20/erc20.py | 3---
Mpython/setup.cfg | 2+-
2 files changed, 1 insertion(+), 4 deletions(-)

diff --git a/python/eth_erc20/erc20.py b/python/eth_erc20/erc20.py @@ -217,7 +217,6 @@ class ERC20(TxFactory): l = len(r) m = v[:l] if m != r: - logg.error('method mismatch, expected {}, got {}'.format(r, m)) raise RequestMismatchException(v) cursor += l @@ -244,7 +243,6 @@ class ERC20(TxFactory): l = len(r) m = v[:l] if m != r: - logg.error('method mismatch, expected {}, got {}'.format(r, m)) raise RequestMismatchException(v) cursor += l @@ -273,7 +271,6 @@ class ERC20(TxFactory): l = len(r) m = v[:l] if m != r: - logg.error('method mismatch, expected {}, got {}'.format(r, m)) raise RequestMismatchException(v) cursor += l diff --git a/python/setup.cfg b/python/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = eth-erc20 -version = 0.2.0 +version = 0.2.1 description = ERC20 interface and simple contract with deployment script that lets any address mint and gift itself tokens. author = Louis Holbrook author_email = dev@holbrook.no