Fix incorrect status icon for ckbunker

This commit is contained in:
Taylor Helsper 2021-03-15 12:48:11 -05:00
parent 8915246990
commit 402ad89ce5

View File

@ -536,7 +536,7 @@ def get_ckbunker_status_and_color():
color = "gray" color = "gray"
if is_bitcoind_synced(): if is_bitcoind_synced():
if is_ckbunker_enabled(): if is_ckbunker_enabled():
color = get_service_status_color("lndhub") color = get_service_status_color("ckbunker")
else: else:
status = "Waiting on Bitcoin" status = "Waiting on Bitcoin"
return status,color return status,color