We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2ced76b + 02269fd commit da99751Copy full SHA for da99751
src/asset_info.h
@@ -32,7 +32,6 @@ typedef struct nftInfo_t {
32
// TOKENS
33
34
#define MAX_TICKER_LEN 11 // 10 characters + '\0'
35
-#define MAX_ITEMS 2
36
37
typedef struct tokenDefinition_t {
38
uint8_t address[ADDRESS_LENGTH]; // must be first item
@@ -47,5 +46,9 @@ typedef struct tokenDefinition_t {
47
46
48
typedef union extraInfo_t {
49
tokenDefinition_t token;
+// Would have used HAVE_NFT_SUPPORT but it is only declared for the Ethereum app
50
+// and not plugins
51
+#ifndef TARGET_NANOS
52
nftInfo_t nft;
53
+#endif
54
} extraInfo_t;
0 commit comments