1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
use fuel_core_storage::MerkleRoot;
use fuel_core_types::{
    blockchain::consensus::Genesis,
    fuel_crypto::Hasher,
};

// TODO: Replace `anyhow` with own `Error` related to genesis.

pub trait GenesisCommitment {
    /// Calculates the merkle root of the state of the entity.
    fn root(&self) -> anyhow::Result<MerkleRoot>;
}

impl GenesisCommitment for Genesis {
    fn root(&self) -> anyhow::Result<MerkleRoot> {
        let genesis_hash = *Hasher::default()
            .chain(self.chain_config_hash)
            .chain(self.coins_root)
            .chain(self.contracts_root)
            .chain(self.messages_root)
            .chain(self.transactions_root)
            .finalize();

        Ok(genesis_hash)
    }
}