We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9b3a4b commit fcd1af8Copy full SHA for fcd1af8
1 file changed
src/features/sign_tx/eth_ustream.c
@@ -315,10 +315,6 @@ static bool process_data(txContext_t *context) {
315
if (context->currentFieldPos < context->currentFieldLength) {
316
uint32_t copySize =
317
MIN(context->commandLength, context->currentFieldLength - context->currentFieldPos);
318
- // If there is no data, set dataPresent to false.
319
- if (copySize == 1 && *context->workBuffer == 0x00) {
320
- context->content->dataPresent = false;
321
- }
322
323
if ((context->currentFieldPos == 0) && (copySize >= 4)) {
324
// Consider the 4 1st bytes are the selector
0 commit comments