From 3914240a2a9ea1d37c1443c7ed9d9971ae15497b Mon Sep 17 00:00:00 2001 From: obrusvit Date: Sun, 25 Feb 2024 15:38:22 +0100 Subject: [PATCH] fixup! chore(legacy): remove CoSi functionality --- legacy/firmware/layout2.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/legacy/firmware/layout2.c b/legacy/firmware/layout2.c index 47a40c6eb..530c438eb 100644 --- a/legacy/firmware/layout2.c +++ b/legacy/firmware/layout2.c @@ -1339,14 +1339,6 @@ void layoutNEMLevy(const NEMMosaicDefinition *definition, uint8_t network) { #endif -static inline bool is_slip18(const uint32_t *address_n, - size_t address_n_count) { - // m / 10018' / [0-9]' - return address_n_count == 2 && address_n[0] == (PATH_HARDENED + 10018) && - (address_n[1] & PATH_HARDENED) && - (address_n[1] & PATH_UNHARDEN_MASK) <= 9; -} - void layoutConfirmAutoLockDelay(uint32_t delay_ms) { char line[sizeof("after 4294967296 minutes?")] = {0};