Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Please Need Help #2

Open
akselite opened this issue Jun 25, 2017 · 4 comments
Open

Please Need Help #2

akselite opened this issue Jun 25, 2017 · 4 comments

Comments

@akselite
Copy link

I can't run for make...This error show .. Please Help
./make_poolmaster.sh
go install: no install location for directory /Ethereum-pool/poolmaster outside GOPATH
For more details see: go help gopath

command-line-arguments

./pool.go:42: undefined: common.BigPow

@Tartofraise
Copy link

same here....

@twelveouncemouse
Copy link

This problem is due to some architecture changes in go-ethereum library, thus compatibilty was broken. The solution is quite simple.

Edit pool.go
Add "github.com/ethereum/go-ethereum/common/math" to imports
In line 42 replace common.BigPow with math.BigPow

@sonnetmia
Copy link

Go to poolmaster folder,

then run these command.

go get github.com/ethereum/ethash
go get github.com/ethereum/go-ethereum/common
go get github.com/ethereum/go-ethereum/common/math
go get github.com/gorilla/mux

Then build pool.go file.
go build pool.go

Hope this will work for you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants
@sonnetmia @twelveouncemouse @Tartofraise @akselite and others