From f31430da30083349f1a33db88d896ca888adb1dc Mon Sep 17 00:00:00 2001 From: Robert Miller Date: Fri, 19 Nov 2021 17:17:34 -0600 Subject: [PATCH] bug: update uint to uin256 --- mev_inspect/classifiers/specs/cryptopunks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mev_inspect/classifiers/specs/cryptopunks.py b/mev_inspect/classifiers/specs/cryptopunks.py index 5070f3d..37f9e2b 100644 --- a/mev_inspect/classifiers/specs/cryptopunks.py +++ b/mev_inspect/classifiers/specs/cryptopunks.py @@ -13,8 +13,8 @@ CRYPTO_PUNKS_SPEC = ClassifierSpec( protocol=Protocol.cryptopunks, valid_contract_addresses=["0xb47e3cd837dDF8e4c57F05d70Ab865de6e193BBB"], classifiers={ - "enterBidForPunk(uint)": PunkBidClassifier, - "acceptBidForPunk(uint,uint)": PunkBidAcceptanceClassifier, + "enterBidForPunk(uint256)": PunkBidClassifier, + "acceptBidForPunk(uint256,uint256)": PunkBidAcceptanceClassifier, }, )