Skip to content
This repository was archived by the owner on Mar 15, 2019. It is now read-only.

Commit f31a052

Browse files
committed
Update README.md with not about vendor folders.
go fmt
1 parent f5cd745 commit f31a052

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,10 @@ There is a [very long to-do list](https://drive.google.com/open?id=1Z057i7tGfnAT
160160

161161
* Find dcrspy executable in `$GOPATH/bin`, and copy elsewhere (recommended).
162162

163+
If you receive build errors, it may be due to "vendor" directories left by
164+
glide builds of dependencies such as dcrwallet. You may safely delete vendor
165+
folders.
166+
163167
## Updating
164168

165169
Run the same command used to build:

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ func main() {
9797

9898
// watchaddress
9999
var recvTxChan, spendTxChan chan *watchedAddrTx
100-
if len(cfg.WatchAddresses) > 0 && !cfg.NoMonitor {
100+
if len(cfg.WatchAddresses) > 0 && !cfg.NoMonitor {
101101
recvTxChan = make(chan *watchedAddrTx, 80)
102102
spendTxChan = make(chan *watchedAddrTx, 80)
103103
}

0 commit comments

Comments
 (0)