Make block hash more random
This commit is contained in:
parent
a6cf757fcf
commit
ed9fa658ed
@ -46,7 +46,7 @@ func GenesisBlock() *Block {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func CreateBlock(lastBlockHeader *BlockHeader, txs []*Transaction, minerEth common.Address, privateKey crypto.PrivKey, eproof *types.ElectionProof) (*Block, error) {
|
func CreateBlock(lastBlockHeader *BlockHeader, txs []*Transaction, minerEth common.Address, privateKey crypto.PrivKey, eproof *types.ElectionProof) (*Block, error) {
|
||||||
timestamp := time.Now().Unix()
|
timestamp := time.Now().UnixNano()
|
||||||
|
|
||||||
// extract hashes from transactions
|
// extract hashes from transactions
|
||||||
var merkleHashes [][]byte
|
var merkleHashes [][]byte
|
||||||
|
Loading…
Reference in New Issue
Block a user