Remove spammy logline

This commit is contained in:
lash 2022-02-19 11:54:35 +00:00
parent 191b88f137
commit 09b98d585b
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
3 changed files with 2 additions and 2 deletions

View File

@ -116,7 +116,6 @@ class AccountsIndex(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-accounts-index
version = 0.1.2
version = 0.1.3
description = Accounts index evm contract tooling with permissioned writes
author = Louis Holbrook
author_email = dev@holbrook.no

View File

@ -1,6 +1,7 @@
pragma solidity >0.6.11;
// SPDX-License-Identifier: GPL-3.0-or-later
// File-Version: 1
contract CustodialAccountIndex {