From 9d8ebfcdbc6118ade9583cce42a7aaf0b8cff4df Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Wed, 21 Aug 2019 15:28:02 +0200 Subject: [PATCH] legacy: remove Features.features field for now, will get reintroduced later --- legacy/firmware/fsm_msg_common.h | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/legacy/firmware/fsm_msg_common.h b/legacy/firmware/fsm_msg_common.h index 594e3920c1..6231d8ff9a 100644 --- a/legacy/firmware/fsm_msg_common.h +++ b/legacy/firmware/fsm_msg_common.h @@ -83,22 +83,6 @@ void fsm_msgGetFeatures(const GetFeatures *msg) { resp->has_model = true; strlcpy(resp->model, "1", sizeof(resp->model)); -#if BITCOIN_ONLY - resp->features_count = 2; - resp->features[0] = Feature_Feature_Bitcoin; - resp->features[1] = Feature_Feature_Crypto; -#else - resp->features_count = 8; - resp->features[0] = Feature_Feature_Bitcoin; - resp->features[1] = Feature_Feature_Bitcoin_like; - resp->features[2] = Feature_Feature_Crypto; - resp->features[3] = Feature_Feature_Ethereum; - resp->features[4] = Feature_Feature_Lisk; - resp->features[5] = Feature_Feature_NEM; - resp->features[6] = Feature_Feature_Stellar; - resp->features[7] = Feature_Feature_U2F; -#endif - msg_write(MessageType_MessageType_Features, resp); }