Fix for fee rate screen
This commit is contained in:
parent
2ca85ff479
commit
969d2137c3
1 changed files with 5 additions and 0 deletions
|
@ -240,6 +240,11 @@ void setCurrentScreen(uint newScreen) {
|
||||||
// xTaskNotifyGive(priceUpdateTaskHandle);
|
// xTaskNotifyGive(priceUpdateTaskHandle);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case SCREEN_BLOCK_FEE_RATE: {
|
||||||
|
WorkItem blockUpdate = {TASK_FEE_UPDATE, 0};
|
||||||
|
xQueueSend(workQueue, &blockUpdate, portMAX_DELAY);
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (eventSourceTaskHandle != NULL) xTaskNotifyGive(eventSourceTaskHandle);
|
if (eventSourceTaskHandle != NULL) xTaskNotifyGive(eventSourceTaskHandle);
|
||||||
|
|
Loading…
Reference in a new issue