EIP-712 code linting

This commit is contained in:
Alexandre Paillier
2022-07-19 11:49:18 +02:00
parent 0cf21cdf73
commit de9e895ad9
44 changed files with 778 additions and 1402 deletions

View File

@@ -10,9 +10,9 @@
#include "field_hash.h"
#include "ui_logic.h"
#include "typed_data.h"
#include "apdu_constants.h" // APDU response codes
#include "shared_context.h" // reset_app_context
#include "ui_callbacks.h" // ui_idle
#include "apdu_constants.h" // APDU response codes
#include "shared_context.h" // reset_app_context
#include "ui_callbacks.h" // ui_idle
s_eip712_context *eip712_context = NULL;
@@ -21,38 +21,32 @@ s_eip712_context *eip712_context = NULL;
*
* @return a boolean indicating if the initialization was successful or not
*/
bool eip712_context_init(void)
{
bool eip712_context_init(void) {
// init global variables
mem_init();
if ((eip712_context = MEM_ALLOC_AND_ALIGN_TYPE(*eip712_context)) == NULL)
{
if ((eip712_context = MEM_ALLOC_AND_ALIGN_TYPE(*eip712_context)) == NULL) {
apdu_response_code = APDU_RESPONSE_INSUFFICIENT_MEMORY;
return false;
}
if (sol_typenames_init() == false)
{
if (sol_typenames_init() == false) {
return false;
}
if (path_init() == false)
{
if (path_init() == false) {
return false;
}
if (field_hash_init() == false)
{
if (field_hash_init() == false) {
return false;
}
if (ui_712_init() == false)
{
if (ui_712_init() == false) {
return false;
}
if (typed_data_init() == false) // this needs to be initialized last !
if (typed_data_init() == false) // this needs to be initialized last !
{
return false;
}
@@ -63,8 +57,7 @@ bool eip712_context_init(void)
/**
* De-initialize the EIP712 context
*/
void eip712_context_deinit(void)
{
void eip712_context_deinit(void) {
typed_data_deinit();
path_deinit();
field_hash_deinit();