Skip to content

Commit

Permalink
Fix order of custom types in test file (workaround).
Browse files Browse the repository at this point in the history
  • Loading branch information
andreibancioiu committed May 2, 2022
1 parent 74db29f commit 30d1a41
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions src/testdata/esdt-nft-marketplace.abi.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand Down Expand Up @@ -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
}
]
}
}
}

0 comments on commit 30d1a41

Please sign in to comment.