Skip to content

Commit

Permalink
Run go fmt on the wallet module
Browse files Browse the repository at this point in the history
It appears that go fmt ./... from the main module doesn't format
dependency modules contained in the same file tree.
  • Loading branch information
jrick committed Aug 20, 2019
1 parent 7c936ab commit e6b1ced
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion wallet/chainntfns.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"math/big"
"time"

blockchain "github.com/decred/dcrd/blockchain/standalone"
"github.com/decred/dcrd/blockchain/stake/v2"
blockchain "github.com/decred/dcrd/blockchain/standalone"
"github.com/decred/dcrd/chaincfg/chainhash"
"github.com/decred/dcrd/dcrjson/v3"
"github.com/decred/dcrd/dcrutil/v2"
Expand Down
2 changes: 1 addition & 1 deletion wallet/createtx.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
"sync"
"time"

blockchain "github.com/decred/dcrd/blockchain/standalone"
"github.com/decred/dcrd/blockchain/stake/v2"
blockchain "github.com/decred/dcrd/blockchain/standalone"
"github.com/decred/dcrd/chaincfg/chainhash"
"github.com/decred/dcrd/chaincfg/v2"
"github.com/decred/dcrd/chaincfg/v2/chainec"
Expand Down
2 changes: 1 addition & 1 deletion wallet/notifications.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"context"
"sync"

blockchain "github.com/decred/dcrd/blockchain/standalone"
"github.com/decred/dcrd/blockchain/stake/v2"
blockchain "github.com/decred/dcrd/blockchain/standalone"
"github.com/decred/dcrd/chaincfg/chainhash"
"github.com/decred/dcrd/dcrutil/v2"
"github.com/decred/dcrd/hdkeychain/v2"
Expand Down
2 changes: 1 addition & 1 deletion wallet/wallet.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ import (
"sync"
"time"

blockchain "github.com/decred/dcrd/blockchain/standalone"
"github.com/decred/dcrd/blockchain/stake/v2"
blockchain "github.com/decred/dcrd/blockchain/standalone"
"github.com/decred/dcrd/chaincfg/chainhash"
"github.com/decred/dcrd/chaincfg/v2"
"github.com/decred/dcrd/chaincfg/v2/chainec"
Expand Down

0 comments on commit e6b1ced

Please sign in to comment.