aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/blockchain.go2
-rw-r--r--dex/app.go3
2 files changed, 3 insertions, 2 deletions
diff --git a/core/blockchain.go b/core/blockchain.go
index 1baabc0d5..1300228e4 100644
--- a/core/blockchain.go
+++ b/core/blockchain.go
@@ -1623,7 +1623,7 @@ func (bc *BlockChain) insertPendingBlocks(chain types.Blocks) (int, []interface{
if err != nil {
return i, nil, nil, fmt.Errorf("pendingState commit error: %v", err)
}
- log.Info("commit pending root", "hash", root)
+ log.Info("Commit pending root", "hash", root)
// add into pending blocks
bc.pendingBlocks[block.NumberU64()] = struct {
diff --git a/dex/app.go b/dex/app.go
index b60291902..7de2bdc86 100644
--- a/dex/app.go
+++ b/dex/app.go
@@ -474,8 +474,9 @@ func (d *DexconApp) BlockDelivered(blockHash coreCommon.Hash, result coreTypes.F
WitnessReceiptHash: witnessData.ReceiptHash,
// TODO(bojie): fix it
GasLimit: 8000000,
- DexconMeta: dexconMeta,
Difficulty: big.NewInt(1),
+ DexconMeta: dexconMeta,
+ Randomness: result.Randomness,
}, transactions, nil, nil)
_, err = d.blockchain.InsertPendingBlocks([]*types.Block{newBlock})