Commit 67572417 authored by obscuren's avatar obscuren

Use the generated key

parent 542bc2fc
...@@ -109,7 +109,7 @@ func main() { ...@@ -109,7 +109,7 @@ func main() {
// Fake block mining. It broadcasts a new block every 5 seconds // Fake block mining. It broadcasts a new block every 5 seconds
go func() { go func() {
pow := &ethchain.EasyPow{} pow := &ethchain.EasyPow{}
addr, _ := hex.DecodeString("82c3b0b72cf62f1a9ce97c64da8072efa28225d8") addr, _ := ethutil.Config.Db.Get([]byte("KeyRing"))
for { for {
txs := ethereum.TxPool.Flush() txs := ethereum.TxPool.Flush()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment