remove bogus spammy error

This commit is contained in:
lash 2022-04-05 19:14:54 +00:00
parent aed92e96d3
commit 1ed9da5a42
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
2 changed files with 1 additions and 4 deletions

View File

@ -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

View File

@ -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