I am not able to compile dcrwallet from sources. $ go get github.com/decred/dcrwallet # github.com/decred/dcrwallet/wstakemgr GOPATH/src/github.com/decred/dcrwallet/wstakemgr/stake.go:731: not enough arguments in call to txscript.NewEngine Any idea what to do please ?
You need to use glide to install the deps properly. dcrwallet was somewhat recently updated to use glide. The readme contains the full details, but a quick summary is: Code: $ cd $GOPATH/src/github.com/decred/dcrwallet $ git pull && glide install && go install . ./cmd/...