grin/core/src/genesis.rs

50 lines
1.4 KiB
Rust
Raw Normal View History

// Copyright 2016 The Grin Developers
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2016-10-21 03:06:12 +03:00
//! Definition of the genesis block. Placeholder for now.
use time;
use core;
use consensus::MINIMUM_DIFFICULTY;
use core::hash::Hashed;
use core::target::Difficulty;
2016-10-21 03:06:12 +03:00
/// Genesis block definition. It has no rewards, no inputs, no outputs, no
/// fees and a height of zero.
2016-10-21 03:06:12 +03:00
pub fn genesis() -> core::Block {
core::Block {
header: core::BlockHeader {
height: 0,
previous: core::hash::Hash([0xff; 32]),
2016-10-21 03:06:12 +03:00
timestamp: time::Tm {
2016-12-14 06:21:49 +03:00
tm_year: 1997 - 1900,
2016-10-21 03:06:12 +03:00
tm_mon: 7,
tm_mday: 4,
..time::empty_tm()
},
difficulty: Difficulty::from_num(MINIMUM_DIFFICULTY),
total_difficulty: Difficulty::from_num(MINIMUM_DIFFICULTY),
utxo_merkle: [].hash(),
tx_merkle: [].hash(),
features: core::DEFAULT_BLOCK,
2016-10-21 03:06:12 +03:00
nonce: 0,
pow: core::Proof::zero(), // TODO get actual PoW solution
},
inputs: vec![],
outputs: vec![],
kernels: vec![],
2016-10-21 03:06:12 +03:00
}
}