20 lines
363 B
C
20 lines
363 B
C
#ifndef _SIGN_TX_H_
|
|
#define _SIGN_TX_H_
|
|
|
|
#include "shared_context.h"
|
|
|
|
typedef enum {
|
|
|
|
PLUGIN_UI_INSIDE = 0,
|
|
PLUGIN_UI_OUTSIDE
|
|
|
|
} plugin_ui_state_t;
|
|
|
|
customStatus_e customProcessor(txContext_t *context);
|
|
void finalizeParsing(bool direct);
|
|
void prepareFeeDisplay();
|
|
void prepareNetworkDisplay();
|
|
void ux_approve_tx(bool fromPlugin);
|
|
|
|
#endif // _SIGN_TX_H_
|