mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-12 18:49:07 +00:00
15 lines
298 B
Plaintext
15 lines
298 B
Plaintext
|
// This file is automatically generated from coin_info.h.mako
|
||
|
// DO NOT EDIT
|
||
|
|
||
|
#ifndef __COIN_INFO_H__
|
||
|
#define __COIN_INFO_H__
|
||
|
|
||
|
#include "coins.h"
|
||
|
|
||
|
<% coins_list = list(supported_on("trezor1", bitcoin)) %>\
|
||
|
#define COINS_COUNT (${len(coins_list)})
|
||
|
|
||
|
extern const CoinInfo coins[COINS_COUNT];
|
||
|
|
||
|
#endif
|