Closed jbrukh closed 6 years ago
Temporary fix was to downgrade to 1.3.1.
Looks like this was broken by https://github.com/NebulousLabs/Sia/commit/057f5ec270888641945ba1f0eceab914f286c34f, which uses fmt.Sscan
to load the address. types.UnlockHash
doesn't implement the Scan
interface, so it fails. We can fix this easily by either implementing the Scan
interface or using LoadString
instead of Sscan
. I've done the former on the addr-scan
branch if you want to build it from source right away.
Thank you Luke for taking a look and speedy reply!
BUG REPORT
Upon executing the following command, I get an error message.
Stack Trace or error message
Expected Behavior
To send siacoins and receive a transaction hash.
How to reproduce it (as minimally and precisely as possible)
Run the command above.
Environment
Go:
$ go version
go version go1.10 darwin/amd64
Sia version: 1.3.2 installed with go (
go get -u github.com/NebulousLabs/Sia/...
). Notably,siad
says:$ siad -M gtcw
Sia Daemon v1.3.2
WARN: compiled without build commit or version. To compile correctly, please use the makefile"
OS: Mac OS X High Sierra 10.13.3