From 09b98d585b137783e7ed91bac1d86fcc75bb711a Mon Sep 17 00:00:00 2001 From: lash Date: Sat, 19 Feb 2022 11:54:35 +0000 Subject: [PATCH] Remove spammy logline --- python/eth_accounts_index/interface.py | 1 - python/setup.cfg | 2 +- solidity/AccountsIndex.sol | 1 + 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python/eth_accounts_index/interface.py b/python/eth_accounts_index/interface.py index 257d0f6..bca1fd1 100644 --- a/python/eth_accounts_index/interface.py +++ b/python/eth_accounts_index/interface.py @@ -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 diff --git a/python/setup.cfg b/python/setup.cfg index fd122ca..97318eb 100644 --- a/python/setup.cfg +++ b/python/setup.cfg @@ -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 diff --git a/solidity/AccountsIndex.sol b/solidity/AccountsIndex.sol index 3971b8a..ce092de 100644 --- a/solidity/AccountsIndex.sol +++ b/solidity/AccountsIndex.sol @@ -1,6 +1,7 @@ pragma solidity >0.6.11; // SPDX-License-Identifier: GPL-3.0-or-later +// File-Version: 1 contract CustodialAccountIndex {