Skip to content

Commit 809c208

Browse files
committed
fmt
1 parent 7bdd0c6 commit 809c208

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

multiwallet_utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ package dcrlibwallet
22

33
import (
44
"context"
5-
"github.com/raedahgroup/dcrlibwallet/walletint"
65

76
"github.com/asdine/storm"
87
"github.com/decred/dcrwallet/errors/v2"
98
w "github.com/decred/dcrwallet/wallet/v3"
109
"github.com/raedahgroup/dcrlibwallet/spv"
10+
"github.com/raedahgroup/dcrlibwallet/walletint"
1111
)
1212

1313
const (

sync.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package dcrlibwallet
22

33
import (
44
"context"
5-
"github.com/raedahgroup/dcrlibwallet/walletint"
65
"net"
76
"strings"
87
"sync"
@@ -12,6 +11,7 @@ import (
1211
"github.com/decred/dcrwallet/p2p/v2"
1312
w "github.com/decred/dcrwallet/wallet/v3"
1413
"github.com/raedahgroup/dcrlibwallet/spv"
14+
"github.com/raedahgroup/dcrlibwallet/walletint"
1515
)
1616

1717
// reading/writing of properties of this struct are protected by mutex.x

txandblocknotifications.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77

88
func (mw *MultiWallet) listenForTransactions(walletID int) {
99
if len(mw.fakeInternalWallet) > 0 {
10-
return
10+
return // no listening for fake internal wallets
1111
}
1212
wallet := mw.wallets[walletID]
1313
n := wallet.internal.GetNtfnServer().TransactionNotifications()

0 commit comments

Comments
 (0)