This commit is contained in:
dni
2026-07-13 09:09:42 +02:00
parent 4dc2c779a2
commit 4337e62c10
2 changed files with 3 additions and 4 deletions
+1 -3
View File
@@ -76,9 +76,7 @@ async def fetch_onchain_balance(onchain_address: str) -> AddressResponse:
if isinstance(balance_res, BaseException):
raise balance_res
history = [] if isinstance(history_res, BaseException) else history_res
history_error = (
str(history_res) if isinstance(history_res, BaseException) else None
)
history_error = str(history_res) if isinstance(history_res, BaseException) else None
return AddressResponse(
balance=balance_res, history=history, history_error=history_error
)
+2 -1
View File
@@ -851,7 +851,8 @@ window.localisation.en = {
'Allow unauthenticated access to the block explorer API endpoints.',
electrum_compatible_server: 'Electrum compatible server',
electrum_server_url: 'Electrum Server URL',
electrum_server_url_hint: 'Choose a public Electrum server or enter your own.',
electrum_server_url_hint:
'Choose a public Electrum server or enter your own.',
electrum_server_url_custom: 'Custom Electrum Server URL',
view_public_electrum_servers: 'View public Electrum servers',
blockexplorer_network: 'Bitcoin Network',