We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8de163a + fbb78bf commit 1ccd114Copy full SHA for 1ccd114
verifier/src/types/core.rs
@@ -87,11 +87,14 @@ pub struct SpvTypeArgs {
87
///
88
/// N.B. Exclude the SPV info cell.
89
pub clients_count: u8,
90
- /// Bit flags to control features.
+ /// Bit flags to control SPV client features and chain identification.
91
92
/// From high to low:
93
- /// - Set 0-th bit to true, to disable difficulty checks.
94
- /// - Other bits are reserved.
+ /// - The two highest bits are reserved for chain type identification:
+ /// - 0b00 for mainnet
95
+ /// - 0b10 for testnet
96
+ /// - 0b01 for signet
97
+ /// - Other bits are reserved for future use.
98
pub flags: u8,
99
}
100
0 commit comments