Compare commits

..

No commits in common. "5a09d33be0dc2fd0230640813a3f9f7bce71d7a3" and "7e1042c6a9fe775e4a4534dba875272df52191f9" have entirely different histories.

6 changed files with 2 additions and 21 deletions

View File

@ -4,7 +4,6 @@ RELOAD max_amount
MAP max_amount
MOUT back 0
HALT
CATCH transaction_swap flag_swap_transaction 1
LOAD validate_amount 64
RELOAD validate_amount
CATCH api_failure flag_api_call_error 1

View File

@ -35,4 +35,3 @@ flag,flag_account_pin_reset,41,this is set on an account when an admin triggers
flag,flag_incorrect_pool,42,this is set when the user selects an invalid pool
flag,flag_low_swap_amount,43,this is set when the swap max limit is less than 0.1
flag,flag_alias_unavailable,44,this is set when the preferred alias is not available
flag,flag_swap_transaction,45,this is set when the transaction will involve performing a swap

Can't render this file because it has a wrong number of fields in line 34.

View File

@ -1,3 +0,0 @@
{{.transaction_swap_preview}}
Please enter your PIN to confirm:

View File

@ -1,12 +0,0 @@
LOAD transaction_swap_preview 0
MAP transaction_swap_preview
CATCH api_failure flag_api_call_error 1
MOUT back 0
MOUT quit 9
LOAD authorize_account 6
HALT
RELOAD authorize_account
CATCH incorrect_pin flag_incorrect_pin 1
INCMP _ 0
INCMP quit 9
INCMP transaction_swap_initiated *

View File

@ -1,4 +0,0 @@
LOAD reset_incorrect_pin 6
CATCH _ flag_account_authorized 0
LOAD transaction_initiate_swap 0
HALT

View File

@ -91,6 +91,8 @@ const (
DATA_ACTIVE_POOL_SYM
// Holds the send transaction type
DATA_SEND_TRANSACTION_TYPE
// Holds the recipient active token (RAT)
DATA_RECIPIENT_ACTIVE_TOKEN
// Holds the recipient formatted phone number
DATA_RECIPIENT_PHONE_NUMBER
)