trident_svm/
trident_fork_graphs.rs

1
2
3
4
5
6
7
8
9
10
11
12
use solana_program_runtime::loaded_programs::BlockRelation;
use solana_program_runtime::loaded_programs::ForkGraph;

use solana_sdk::clock::Slot;

pub struct TridentForkGraph {}

impl ForkGraph for TridentForkGraph {
    fn relationship(&self, _a: Slot, _b: Slot) -> BlockRelation {
        BlockRelation::Unknown
    }
}