Skip to content

Commit 14ea030

Browse files
committed
backend: remove unused event headersSynced
1 parent 3d64254 commit 14ea030

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

backend/accounts/types/event.go

-3
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ const (
2525
// transactions, confirmations, etc.).
2626
EventSyncDone Event = "sync-done"
2727

28-
// EventHeadersSynced is fired when the headers finished syncing.
29-
EventHeadersSynced Event = "headersSynced"
30-
3128
// EventSyncedAddressesCount is emitted when the frontend should receives a sync progress update.
3229
EventSyncedAddressesCount Event = "synced-addresses-count"
3330
)

backend/coins/btc/account.go

-6
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ import (
3030
"github.com/BitBoxSwiss/bitbox-wallet-app/backend/coins/btc/addresses"
3131
"github.com/BitBoxSwiss/bitbox-wallet-app/backend/coins/btc/blockchain"
3232
"github.com/BitBoxSwiss/bitbox-wallet-app/backend/coins/btc/db/transactionsdb"
33-
"github.com/BitBoxSwiss/bitbox-wallet-app/backend/coins/btc/headers"
3433
"github.com/BitBoxSwiss/bitbox-wallet-app/backend/coins/btc/maketx"
3534
"github.com/BitBoxSwiss/bitbox-wallet-app/backend/coins/btc/transactions"
3635
"github.com/BitBoxSwiss/bitbox-wallet-app/backend/coins/btc/types"
@@ -325,11 +324,6 @@ func (account *Account) Initialize() error {
325324
account.SetOffline(account.coin.Blockchain().ConnectionError())
326325
account.coin.Blockchain().RegisterOnConnectionErrorChangedEvent(onConnectionStatusChanged)
327326
theHeaders := account.coin.Headers()
328-
theHeaders.SubscribeEvent(func(event headers.Event) {
329-
if event == headers.EventSynced {
330-
account.Config().OnEvent(accountsTypes.EventHeadersSynced)
331-
}
332-
})
333327
account.transactions = transactions.NewTransactions(
334328
account.coin.Net(), account.db, theHeaders, account.Synchronizer,
335329
account.coin.Blockchain(), account.notifier, account.log)

0 commit comments

Comments
 (0)