Skip to content

Commit

Permalink
Merge pull request #28 from ergoplatform/rename-start-signing
Browse files Browse the repository at this point in the history
Rename `Start Signing` to `Review transaction`
  • Loading branch information
arobsn authored Nov 26, 2024
2 parents aa699c0 + d6a47fe commit ff30bac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/commands/signtx/operations/stx_op_p2pk.c
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ uint16_t ui_stx_operation_p2pk_show_token_and_path(sign_transaction_operation_p2
const ux_flow_step_t *b32_step = ui_bip32_path_screen(
ctx->bip32.path,
ctx->bip32.len,
"Start Signing",
"Review transaction",
ctx->ui_approve.bip32_path,
MEMBER_SIZE(sign_transaction_operation_p2pk_ui_approve_data_ctx_t, bip32_path),
NULL,
Expand Down
2 changes: 1 addition & 1 deletion src/commands/signtx/stx_ui_nbgl.c
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ bool ui_stx_add_transaction_screens(sign_transaction_ui_sign_confirm_ctx_t* ctx,
nbgl_useCaseReview(TYPE_TRANSACTION,
&pair_list,
&C_app_logo_64px,
"Start Signing",
"Review transaction",
base_ctx->ui_approve.bip32_path,
"Sign transaction",
ui_stx_operation_approve_action);
Expand Down
2 changes: 1 addition & 1 deletion tests/transaction-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function signTxFlows({ device }, auth, from, to, change, tokens_to = undefined,
flows[i++].push({ header: null, body: 'Approve' }, { header: null, body: 'Reject' });
// accept tx screen
if (to || change) {
flows[i] = [{ header: 'Start Signing', body: removeMasterNode(from.path.toString()) }];
flows[i] = [{ header: 'Review transaction', body: removeMasterNode(from.path.toString()) }];
}
// output screen
if (to) {
Expand Down

0 comments on commit ff30bac

Please sign in to comment.