Post
Topic
Board Announcements (Altcoins)
Re: [ANN][DCR] Decred - Hybrid PoW/PoS | btcsuite Devs | Tons of New Features | Go
by
elbandi
on 18/02/2016, 11:42:57 UTC
Can you tell me where I went wrong, I can give you 80. DCR, thank you,Before I find the hex, I enter in your thread only 32 characters

 If you have the seed hex, then replace your hex into this golang code:
Code:
package main
import (
"github.com/decred/dcrwallet/pgpwordlist"
"encoding/hex"
"fmt"
)
func main() {
bytes, err := hex.DecodeString("e92cfab0018f6519f885c13939687de14c2b8f6e3e5a55dfa6e3861ba9a105d5")
if err != nil {
panic(err)
}
words, err := pgpwordlist.ToStringChecksum(bytes)
if err != nil {
panic(err)
}
fmt.Printf("words: %s\n", words)
}

Compile and run it.