We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcd9066 commit e54ab5dCopy full SHA for e54ab5d
apps/inheritance_app/inheritance_auth_wallet.c
@@ -310,6 +310,7 @@ static bool send_result() {
310
memcpy(result.auth_wallet.result.seed_based.public_key,
311
auth->seed_based_data.result.public_key,
312
sizeof(ed25519_public_key));
313
+ result.auth_wallet.result.seed_based.has_public_key = true;
314
}
315
316
if (auth->do_wallet_based) {
@@ -321,6 +322,7 @@ static bool send_result() {
321
322
memcpy(result.auth_wallet.result.wallet_based.public_key,
323
auth->wallet_based_data.result.public_key,
324
325
+ result.auth_wallet.result.wallet_based.has_public_key = true;
326
327
328
inheritance_send_result(&result);
0 commit comments