From 30d1a411aac79a93a9b56d99503587124db00639 Mon Sep 17 00:00:00 2001 From: Andrei Bancioiu Date: Mon, 2 May 2022 18:48:25 +0300 Subject: [PATCH] Fix order of custom types in test file (workaround). --- src/testdata/esdt-nft-marketplace.abi.json | 42 +++++++++++----------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/src/testdata/esdt-nft-marketplace.abi.json b/src/testdata/esdt-nft-marketplace.abi.json index c833a2dd..f7ebedb3 100644 --- a/src/testdata/esdt-nft-marketplace.abi.json +++ b/src/testdata/esdt-nft-marketplace.abi.json @@ -416,6 +416,27 @@ } ] }, + "AuctionType": { + "type": "enum", + "variants": [ + { + "name": "None", + "discriminant": 0 + }, + { + "name": "Nft", + "discriminant": 1 + }, + { + "name": "SftAll", + "discriminant": 2 + }, + { + "name": "SftOnePerPayment", + "discriminant": 3 + } + ] + }, "Auction": { "type": "struct", "fields": [ @@ -472,27 +493,6 @@ "type": "BigUint" } ] - }, - "AuctionType": { - "type": "enum", - "variants": [ - { - "name": "None", - "discriminant": 0 - }, - { - "name": "Nft", - "discriminant": 1 - }, - { - "name": "SftAll", - "discriminant": 2 - }, - { - "name": "SftOnePerPayment", - "discriminant": 3 - } - ] } } }