We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c02f55e commit d629c11Copy full SHA for d629c11
1 file changed
app/src/common/actions.h
@@ -70,9 +70,13 @@ extern uint8_t action_addr_len;
70
71
extern bool review_pending;
72
73
-__Z_INLINE void set_review_pending(bool val) { review_pending = val; }
+__Z_INLINE void set_review_pending(bool val) {
74
+ review_pending = val;
75
+}
76
-__Z_INLINE bool is_review_pending(void) { return review_pending; }
77
+__Z_INLINE bool is_review_pending(void) {
78
+ return review_pending;
79
80
81
// helper function to get the presig_hash of the transaction being signed
82
__Z_INLINE zxerr_t get_presig_hash(uint8_t *hash, uint16_t hashLen);
0 commit comments