Skip to content

Commit e54ab5d

Browse files
committed
fix(app): Auth wallet set public key bool
1 parent bcd9066 commit e54ab5d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

apps/inheritance_app/inheritance_auth_wallet.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -310,6 +310,7 @@ static bool send_result() {
310310
memcpy(result.auth_wallet.result.seed_based.public_key,
311311
auth->seed_based_data.result.public_key,
312312
sizeof(ed25519_public_key));
313+
result.auth_wallet.result.seed_based.has_public_key = true;
313314
}
314315
}
315316
if (auth->do_wallet_based) {
@@ -321,6 +322,7 @@ static bool send_result() {
321322
memcpy(result.auth_wallet.result.wallet_based.public_key,
322323
auth->wallet_based_data.result.public_key,
323324
sizeof(ed25519_public_key));
325+
result.auth_wallet.result.wallet_based.has_public_key = true;
324326
}
325327
}
326328
inheritance_send_result(&result);

0 commit comments

Comments
 (0)