From f344ec9c9ba4d784906e239b21cf297b04b7bf4d Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Tue, 17 Mar 2015 15:02:07 +0100 Subject: [PATCH] actually is SLIP-0013 --- firmware/fsm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/fsm.c b/firmware/fsm.c index 4ea436c..4604ec5 100644 --- a/firmware/fsm.c +++ b/firmware/fsm.c @@ -643,7 +643,7 @@ void fsm_msgSignIdentity(SignIdentity *msg) return; } uint32_t address_n[5]; - address_n[0] = 0x80000000 | 46; + address_n[0] = 0x80000000 | 13; address_n[1] = 0x80000000 | hash[ 0] | (hash[ 1] << 8) | (hash[ 2] << 16) | (hash[ 3] << 24); address_n[2] = 0x80000000 | hash[ 4] | (hash[ 5] << 8) | (hash[ 6] << 16) | (hash[ 7] << 24); address_n[3] = 0x80000000 | hash[ 8] | (hash[ 9] << 8) | (hash[10] << 16) | (hash[11] << 24);