From 2e0b38c332a3ab4e11b97a38ff6d8427a3d96215 Mon Sep 17 00:00:00 2001 From: Determinant Date: Thu, 26 Sep 2019 00:36:14 -0400 Subject: add a chain rand generation example/test --- examples/chain/main.go | 213 ++++++++++++++++++++++++++++++++++++++++++++++ examples/payments/main.go | 4 +- 2 files changed, 215 insertions(+), 2 deletions(-) create mode 100644 examples/chain/main.go diff --git a/examples/chain/main.go b/examples/chain/main.go new file mode 100644 index 0000000..eddebd5 --- /dev/null +++ b/examples/chain/main.go @@ -0,0 +1,213 @@ +package main + +import ( + "crypto/rand" + "fmt" + "github.com/ava-labs/coreth" + "github.com/ava-labs/coreth/eth" + "github.com/ava-labs/go-ethereum/common" + "github.com/ava-labs/go-ethereum/common/hexutil" + "github.com/ava-labs/go-ethereum/core" + "github.com/ava-labs/go-ethereum/core/types" + "github.com/ava-labs/go-ethereum/log" + "github.com/ava-labs/go-ethereum/params" + "github.com/ava-labs/go-ethereum/rlp" + "math/big" + //mrand "math/rand" + "time" +) + +func checkError(err error) { + if err != nil { + panic(err) + } +} + +type TestChain struct { + hasBlock map[common.Hash]struct{} + blocks []common.Hash + blkCount uint32 + chain *coreth.ETHChain + parentBlock common.Hash + outBlockCh chan<- []byte +} + +func (tc *TestChain) insertBlock(block *types.Block) { + if _, ok := tc.hasBlock[block.Hash()]; !ok { + tc.hasBlock[block.Hash()] = struct{}{} + tc.blocks = append(tc.blocks, block.Hash()) + } +} + +func NewTestChain(name string, config *eth.Config, + inBlockCh <-chan []byte, outBlockCh chan<- []byte, + inAckCh <-chan struct{}, outAckCh chan<- struct{}) *TestChain { + tc := &TestChain{ + hasBlock: make(map[common.Hash]struct{}), + blocks: make([]common.Hash, 0), + blkCount: 0, + chain: coreth.NewETHChain(config, nil, nil), + outBlockCh: outBlockCh, + } + tc.insertBlock(tc.chain.GetGenesisBlock()) + tc.chain.SetOnSealMiner(func(block *types.Block) error { + blkID := tc.blkCount + tc.blkCount++ + if len(block.Uncles()) != 0 { + panic("#uncles should be zero") + } + if tc.parentBlock != block.ParentHash() { + panic("mismatching parent hash") + } + log.Info(fmt.Sprintf("%s: create %s <= (%d = %s)", + name, tc.parentBlock.Hex(), blkID, block.Hash().Hex())) + tc.insertBlock(block) + if tc.outBlockCh != nil { + serialized, err := rlp.EncodeToBytes(block) + if err != nil { + panic(err) + } + tc.outBlockCh <- serialized + <-inAckCh + log.Info(fmt.Sprintf("%s: got ack", name)) + } + return nil + }) + go func() { + for { + select { + case serialized := <-inBlockCh: + block := new(types.Block) + err := rlp.DecodeBytes(serialized, block) + if err != nil { + panic(err) + } + tc.chain.InsertChain([]*types.Block{block}) + tc.insertBlock(block) + log.Info(fmt.Sprintf("%s: got block %s, sending ack", name, block.Hash().Hex())) + outAckCh <- struct{}{} + } + } + }() + return tc +} + +func (tc *TestChain) Start() { + tc.chain.Start() +} + +func (tc *TestChain) Stop() { + tc.chain.Stop() +} + +func (tc *TestChain) GenRandomTree(n int, max int) { + for i := 0; i < n; i++ { + nblocks := len(tc.blocks) + m := max + if m < 0 { + m = nblocks + } + pb, _ := rand.Int(rand.Reader, big.NewInt((int64)(m))) + pn := pb.Int64() + tc.parentBlock = tc.blocks[nblocks-1-(int)(pn)] + tc.chain.SetTail(tc.parentBlock) + tc.chain.GenBlock() + time.Sleep(time.Second) + } +} + +func main() { + // configure the chain + config := eth.DefaultConfig + chainConfig := ¶ms.ChainConfig{ + ChainID: big.NewInt(1), + HomesteadBlock: big.NewInt(0), + DAOForkBlock: big.NewInt(0), + DAOForkSupport: true, + EIP150Block: big.NewInt(0), + EIP150Hash: common.HexToHash("0x2086799aeebeae135c246c65021c82b4e15a2c451340993aacfd2751886514f0"), + EIP155Block: big.NewInt(0), + EIP158Block: big.NewInt(0), + ByzantiumBlock: big.NewInt(0), + ConstantinopleBlock: big.NewInt(0), + PetersburgBlock: big.NewInt(0), + IstanbulBlock: nil, + Ethash: nil, + } + + // configure the genesis block + genBalance := big.NewInt(100000000000000000) + genKey, _ := coreth.NewKey(rand.Reader) + + config.Genesis = &core.Genesis{ + Config: chainConfig, + Nonce: 0, + Number: 0, + ExtraData: hexutil.MustDecode("0x00"), + GasLimit: 100000000, + Difficulty: big.NewInt(0), + Alloc: core.GenesisAlloc{genKey.Address: {Balance: genBalance}}, + } + + // grab the control of block generation and disable auto uncle + config.Miner.ManualMining = true + config.Miner.DisableUncle = true + + aliceBlk := make(chan []byte) + bobBlk := make(chan []byte) + aliceAck := make(chan struct{}) + bobAck := make(chan struct{}) + alice := NewTestChain("alice", &config, bobBlk, aliceBlk, bobAck, aliceAck) + bob := NewTestChain("bob", &config, aliceBlk, bobBlk, aliceAck, bobAck) + alice.Start() + bob.Start() + alice.GenRandomTree(60, -1) + log.Info("alice finished generating the tree") + time.Sleep(2 * time.Second) + bob.outBlockCh = nil + bob.GenRandomTree(60, 2) + //mrand.Shuffle(len(bob.blocks), + // func(i, j int) { bob.blocks[i], bob.blocks[j] = bob.blocks[j], bob.blocks[i] }) + log.Info("bob finished generating the tree") + time.Sleep(2 * time.Second) + log.Info("bob sends out all its blocks") + for i := range bob.blocks { + serialized, err := rlp.EncodeToBytes(bob.chain.GetBlockByHash(bob.blocks[i])) + if err != nil { + panic(err) + } + bobBlk <- serialized + <-aliceAck + log.Info(fmt.Sprintf("bob: got ack")) + } + log.Info("bob finished generating the tree") + time.Sleep(2 * time.Second) + log.Info("comparing two trees") + if len(alice.blocks) != len(bob.blocks) { + panic(fmt.Sprintf("mismatching tree size %d != %d", len(alice.blocks), len(bob.blocks))) + } + gn := big.NewInt(0) + for i := range alice.blocks { + ablk := alice.chain.GetBlockByHash(alice.blocks[i]) + bblk := bob.chain.GetBlockByHash(alice.blocks[i]) + for ablk.Number().Cmp(gn) > 0 && bblk.Number().Cmp(gn) > 0 { + result := ablk.Hash() == bblk.Hash() + opsign := "==" + if !result { + opsign = "!=" + } + log.Info(fmt.Sprintf("alice(%d = %s) %s bob (%d = %s)", + ablk.Number(), ablk.Hash().Hex(), + opsign, + bblk.Number(), bblk.Hash().Hex())) + if !result { + panic("mismatching path") + } + ablk = alice.chain.GetBlockByHash(ablk.ParentHash()) + bblk = bob.chain.GetBlockByHash(bblk.ParentHash()) + } + log.Info(fmt.Sprintf("%s ok", alice.blocks[i].Hex())) + } + alice.Stop() + bob.Stop() +} diff --git a/examples/payments/main.go b/examples/payments/main.go index 0a69061..4a49813 100644 --- a/examples/payments/main.go +++ b/examples/payments/main.go @@ -60,7 +60,7 @@ func main() { // grab the control of block generation and disable auto uncle config.Miner.ManualMining = true - config.Miner.ManualUncle = true + config.Miner.DisableUncle = true // info required to generate a transaction chainID := chainConfig.ChainID @@ -72,7 +72,7 @@ func main() { checkError(err) blockCount := 0 - chain := coreth.NewETHChain(&config, nil) + chain := coreth.NewETHChain(&config, nil, nil) showBalance := func() { state, err := chain.CurrentState() checkError(err) -- cgit v1.2.3