Skip to content

Commit 3e97aa2

Browse files
committed
chore: fix errors introduced when rebasing,
Reintroduced a comment by mistake, and missed two imports.
1 parent bc83d36 commit 3e97aa2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

backend/coins/eth/blockbook/blockbook.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ import (
2929
ethtypes "github.com/BitBoxSwiss/bitbox-wallet-app/backend/coins/eth/types"
3030
"github.com/BitBoxSwiss/bitbox-wallet-app/util/errp"
3131
"github.com/ethereum/go-ethereum"
32+
"github.com/ethereum/go-ethereum/common"
33+
"github.com/ethereum/go-ethereum/core/types"
3234
"golang.org/x/time/rate"
3335
)
3436

@@ -49,7 +51,6 @@ func NewBlockbook(chainId string, httpClient *http.Client) *Blockbook {
4951
if chainId != "1" {
5052
panic(fmt.Sprintf("ChainID must be '1', got %s instead", chainId))
5153
}
52-
// TODO chainID is not used here, do we have blockbook running for SEPETH as well?
5354
return &Blockbook{
5455
url: "https://bb1.shiftcrypto.io/api/",
5556
httpClient: httpClient,

0 commit comments

Comments
 (0)