From 9c20c54013ffe34477cfa6d31c171b2b1b200aba Mon Sep 17 00:00:00 2001 From: pscott Date: Thu, 15 Apr 2021 15:37:26 +0200 Subject: [PATCH] Apply clang format --- src_common/ethUstream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src_common/ethUstream.c b/src_common/ethUstream.c index 18cd896..fd6cc2e 100644 --- a/src_common/ethUstream.c +++ b/src_common/ethUstream.c @@ -266,7 +266,7 @@ static parserStatus_e processTxInternal(txContext_t *context) { // EIP 2718: TransactionType might be present before the TransactionPayload. if (*context->workBuffer > 0x00 && *context->workBuffer < 0x7f) { PRINTF("TX TYPE: %u\n", context->txType); - if (*context->workBuffer < MIN_TX_TYPE || *context->workBuffer > MAX_TX_TYPE ) { + if (*context->workBuffer < MIN_TX_TYPE || *context->workBuffer > MAX_TX_TYPE) { PRINTF("Transaction type not supported\n"); return USTREAM_FAULT; }