From c076aca82c25fd4808e7938eadcb8246b76f0e41 Mon Sep 17 00:00:00 2001 From: Mark Spanbroek Date: Thu, 29 Jun 2023 11:12:15 +0200 Subject: [PATCH] Fix test --- tests/contractabi/testCustomTypes.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/contractabi/testCustomTypes.nim b/tests/contractabi/testCustomTypes.nim index d0fc7fd..12ddd68 100644 --- a/tests/contractabi/testCustomTypes.nim +++ b/tests/contractabi/testCustomTypes.nim @@ -92,4 +92,4 @@ suite "custom types": test "generic decode works": let encoding = AbiEncoder.encode(custom4) - check AbiDecoder.decodeGeneric(encoding, Custom4) == success custom4 + check AbiDecoder.decodeRecord(encoding, Custom4) == success custom4