From 1ed9da5a428d15661c51f6214c852f73c6a063a4 Mon Sep 17 00:00:00 2001 From: lash Date: Tue, 5 Apr 2022 19:14:54 +0000 Subject: [PATCH] remove bogus spammy error --- python/eth_erc20/erc20.py | 3 --- python/setup.cfg | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/python/eth_erc20/erc20.py b/python/eth_erc20/erc20.py index 8e3cde8..88c1eeb 100644 --- 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 index 2e23073..5dc152c 100644 --- 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