Skip to content

Commit 1fc6a1b

Browse files
committed
Merge commit 'refs/pull/3239/head' of https://github.com/BitBoxSwiss/bitbox-wallet-app
2 parents d84159c + 87799d5 commit 1fc6a1b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

backend/coins/btc/transactions/transactions.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ func (transactions *Transactions) UpdateAddressHistory(scriptHashHex blockchain.
316316
}
317317
}
318318

319-
// getTransactionsCached requires transactions lock.
319+
// getTransactionCached requires transactions lock.
320320
func (transactions *Transactions) getTransactionCached(
321321
dbTx DBTxInterface,
322322
txHash chainhash.Hash,

backend/devices/bitbox02/keystore.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ func (keystore *keystore) SignETHMessage(message []byte, keypath signing.Absolut
616616
return signature, nil
617617
}
618618

619-
// SignETHTypedData implements keystore.Keystore.
619+
// SignETHTypedMessage implements keystore.Keystore.
620620
func (keystore *keystore) SignETHTypedMessage(chainId uint64, data []byte, keypath signing.AbsoluteKeypath) ([]byte, error) {
621621
signature, err := keystore.device.ETHSignTypedMessage(chainId, keypath.ToUInt32(), data)
622622
if firmware.IsErrorAbort(err) {

backend/rates/history_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ func TestHistoryEarliestLatest(t *testing.T) {
161161
assert.Zero(t, updater.HistoryLatestTimestampFiat([]string{"foo", "btc"}, "USD"))
162162
}
163163

164-
// TestLoadDumpUnusableDB ensures no panic when the RateUpdater.historyDB is unusable.
164+
// TestLoadDumpBucketUnusableDB ensures no panic when the RateUpdater.historyDB is unusable.
165165
func TestLoadDumpBucketUnusableDB(t *testing.T) {
166166
updater := NewRateUpdater(nil, "/dev/null")
167167
defer updater.Stop()

0 commit comments

Comments
 (0)