From e54ab5d61a116b5197ae1e9143b27ec02591952a Mon Sep 17 00:00:00 2001 From: Vaibhav Sethia Date: Sat, 31 Aug 2024 15:14:59 +0530 Subject: [PATCH] fix(app): Auth wallet set public key bool --- apps/inheritance_app/inheritance_auth_wallet.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/inheritance_app/inheritance_auth_wallet.c b/apps/inheritance_app/inheritance_auth_wallet.c index f0ab2ef19..515e0f494 100644 --- a/apps/inheritance_app/inheritance_auth_wallet.c +++ b/apps/inheritance_app/inheritance_auth_wallet.c @@ -310,6 +310,7 @@ static bool send_result() { memcpy(result.auth_wallet.result.seed_based.public_key, auth->seed_based_data.result.public_key, sizeof(ed25519_public_key)); + result.auth_wallet.result.seed_based.has_public_key = true; } } if (auth->do_wallet_based) { @@ -321,6 +322,7 @@ static bool send_result() { memcpy(result.auth_wallet.result.wallet_based.public_key, auth->wallet_based_data.result.public_key, sizeof(ed25519_public_key)); + result.auth_wallet.result.wallet_based.has_public_key = true; } } inheritance_send_result(&result);