Skip to content

Commit

Permalink
attestation: update ui 'attestation' text to preferred 'genuine check'
Browse files Browse the repository at this point in the history
  • Loading branch information
JamieDriver committed Nov 5, 2024
1 parent b2608b1 commit 3c3f24a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main/process/sign_attestation.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ void sign_attestation_process(void* process_ptr)
}

// User to confirm signing
const char* message[] = { "Sign Attestation challenge?" };
if (!await_yesno_activity("Sign Attestation", message, 1, true, "blkstrm.com/attest")) {
const char* message[] = { "Sign Genuine Check?" };
if (!await_yesno_activity("Genuine Check", message, 1, true, "blkstrm.com/genuine")) {
JADE_LOGW("User declined to sign attestation");
jade_process_reject_message(process, CBOR_RPC_USER_CANCELLED, "User declined to sign attestation", NULL);
jade_process_reject_message(process, CBOR_RPC_USER_CANCELLED, "User declined to sign genuine check", NULL);
goto cleanup;
}
JADE_LOGD("User pressed accept");
Expand Down

0 comments on commit 3c3f24a

Please sign in to comment.