diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-10-23 19:38:51 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:49:54 +0800 |
commit | 0450035fa9987d0d863f6d60b7888d89f654a29f (patch) | |
tree | 5d41728051f60055dd061807d219a0dbffb029ea /dex | |
parent | a9e84fe5cdfa9faa8372d33ae04f7b2c843b7445 (diff) | |
download | dexon-0450035fa9987d0d863f6d60b7888d89f654a29f.tar dexon-0450035fa9987d0d863f6d60b7888d89f654a29f.tar.gz dexon-0450035fa9987d0d863f6d60b7888d89f654a29f.tar.bz2 dexon-0450035fa9987d0d863f6d60b7888d89f654a29f.tar.lz dexon-0450035fa9987d0d863f6d60b7888d89f654a29f.tar.xz dexon-0450035fa9987d0d863f6d60b7888d89f654a29f.tar.zst dexon-0450035fa9987d0d863f6d60b7888d89f654a29f.zip |
dex: fix missing randomness assignment
Diffstat (limited to 'dex')
-rw-r--r-- | dex/app.go | 3 |
1 files changed, 2 insertions, 1 deletions
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}) |