Files

22 lines
419 B
C
Raw Permalink Normal View History

#ifndef _SIGN_TX_H_
#define _SIGN_TX_H_
2020-06-27 13:24:04 +02:00
#include "shared_context.h"
typedef enum {
PLUGIN_UI_INSIDE = 0,
PLUGIN_UI_OUTSIDE
} plugin_ui_state_t;
2020-06-27 13:24:04 +02:00
customStatus_e customProcessor(txContext_t *context);
2024-06-21 11:49:42 +02:00
void finalizeParsing();
void prepareFeeDisplay();
void prepareNetworkDisplay();
void ux_approve_tx(bool fromPlugin);
2024-06-21 11:49:42 +02:00
void report_finalize_error(void);
void start_signature_flow(void);
#endif // _SIGN_TX_H_