trident-svm 0.2.0

Trident SVM implementation by Ackee Blockchain Security
Documentation
1
2
3
4
5
6
7
8
9
10
11
use solana_clock::Slot;
use solana_program_runtime::loaded_programs::BlockRelation;
use solana_program_runtime::loaded_programs::ForkGraph;

pub struct TridentForkGraph {}

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