dusk-node 1.4.2

An implementation of dusk-blockchain node in pure Rust
Documentation
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
//
// Copyright (c) DUSK NETWORK. All rights reserved.

use node_data::ledger::{Block, Header};

/// Generates the genesis state for the chain per specified network type
pub(crate) fn generate_block(state_hash: [u8; 32], timestamp: u64) -> Block {
    Block::new(
        Header {
            timestamp,
            state_hash,
            ..Default::default()
        },
        vec![],
        vec![],
    )
    .expect("block should be valid")
}