Repair token count

This commit is contained in:
nolash
2021-05-13 17:55:05 +02:00
parent 6dd8e9b55e
commit 1493f7d860
5 changed files with 44 additions and 14 deletions

File diff suppressed because one or more lines are too long

View File

@@ -94,6 +94,11 @@ class AccountsIndex(TxFactory):
return abi_decode_single(ABIContractType.ADDRESS, v)
@classmethod
def parse_entry_count(self, v):
return abi_decode_single(ABIContractType.UINT256, v)
@classmethod
def parse_have(self, v):
return abi_decode_single(ABIContractType.BOOLEAN, v)