From b120fc6565e4e7263db6e47fcf98c94bda8eb2bd Mon Sep 17 00:00:00 2001 From: Jorge Martins Date: Tue, 8 Nov 2022 09:56:00 +0100 Subject: [PATCH] fix code style --- src/eth_plugin_internal.c | 2 +- src/eth_plugin_internal.h | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/eth_plugin_internal.c b/src/eth_plugin_internal.c index b608177..40a6f70 100644 --- a/src/eth_plugin_internal.c +++ b/src/eth_plugin_internal.c @@ -1,6 +1,6 @@ #include #include "eth_plugin_internal.h" -#include "ethUtils.h" // allzeroes +#include "ethUtils.h" // allzeroes bool erc20_plugin_available_check(void); diff --git a/src/eth_plugin_internal.h b/src/eth_plugin_internal.h index 3d7ee55..cb5521f 100644 --- a/src/eth_plugin_internal.h +++ b/src/eth_plugin_internal.h @@ -16,7 +16,8 @@ void copy_parameter(uint8_t* dst, const uint8_t* parameter, uint8_t dst_size); void erc721_plugin_call(int message, void* parameters); void erc1155_plugin_call(int message, void* parameters); -// Get the value from the beginning of the parameter (right to left) and check if the rest of it is zero +// Get the value from the beginning of the parameter (right to left) and check if the rest of it is +// zero bool U2BE_from_parameter(uint8_t* parameter, uint16_t* value); bool U4BE_from_parameter(uint8_t* parameter, uint32_t* value);