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