forked from cerc-io/plugeth
Mine?
This commit is contained in:
parent
8f16b66507
commit
e28632b997
@ -124,8 +124,8 @@ func (i *Console) ParseInput(input string) bool {
|
|||||||
ethutil.BigPow(2, 36), // diff
|
ethutil.BigPow(2, 36), // diff
|
||||||
ethutil.Big(tokens[2]))) // nonce
|
ethutil.Big(tokens[2]))) // nonce
|
||||||
case "decode":
|
case "decode":
|
||||||
d, _ := ethutil.Decode([]byte(tokens[1]), 0)
|
value := ethutil.NewRlpDecoder([]byte(tokens[1]))
|
||||||
fmt.Printf("%q\n", d)
|
fmt.Println(value)
|
||||||
case "getaddr":
|
case "getaddr":
|
||||||
encoded, _ := hex.DecodeString(tokens[1])
|
encoded, _ := hex.DecodeString(tokens[1])
|
||||||
d := i.ethereum.BlockManager.BlockChain().CurrentBlock.State().Get(string(encoded))
|
d := i.ethereum.BlockManager.BlockChain().CurrentBlock.State().Get(string(encoded))
|
||||||
|
14
ethereum.go
14
ethereum.go
@ -8,7 +8,6 @@ import (
|
|||||||
"github.com/ethereum/ethutil-go"
|
"github.com/ethereum/ethutil-go"
|
||||||
_ "github.com/ethereum/ethwire-go"
|
_ "github.com/ethereum/ethwire-go"
|
||||||
"log"
|
"log"
|
||||||
"math/big"
|
|
||||||
"os"
|
"os"
|
||||||
"os/signal"
|
"os/signal"
|
||||||
"path"
|
"path"
|
||||||
@ -89,11 +88,19 @@ 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() {
|
||||||
for {
|
pow := ðchain.EasyPow{}
|
||||||
|
|
||||||
|
for {
|
||||||
|
txs := ethereum.TxPool.Flush()
|
||||||
|
block := ethereum.BlockManager.BlockChain().NewBlock("82c3b0b72cf62f1a9ce97c64da8072efa28225d8", txs)
|
||||||
|
|
||||||
|
nonce := pow.Search(block)
|
||||||
|
block.Nonce = nonce
|
||||||
|
|
||||||
|
log.Println("nonce found:", nonce)
|
||||||
|
/*
|
||||||
time.Sleep(blockTime * time.Second)
|
time.Sleep(blockTime * time.Second)
|
||||||
|
|
||||||
txs := ethereum.TxPool.Flush()
|
|
||||||
|
|
||||||
block := ethchain.CreateBlock(
|
block := ethchain.CreateBlock(
|
||||||
ethereum.BlockManager.BlockChain().CurrentBlock.State().Root,
|
ethereum.BlockManager.BlockChain().CurrentBlock.State().Root,
|
||||||
@ -109,6 +116,7 @@ func main() {
|
|||||||
} else {
|
} else {
|
||||||
//log.Println("\n+++++++ MINED BLK +++++++\n", block.String())
|
//log.Println("\n+++++++ MINED BLK +++++++\n", block.String())
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user