Skip to content

Commit 0699935

Browse files
committed
Make FullParams members public
1 parent 9304937 commit 0699935

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/dynafed.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,17 +85,17 @@ impl Serialize for HexBytesArray<'_> {
8585
#[derive(Clone, Eq, Hash, PartialEq, PartialOrd, Ord)]
8686
pub struct FullParams {
8787
/// "scriptPubKey" used for block signing
88-
signblockscript: Script,
88+
pub signblockscript: Script,
8989
/// Maximum, in bytes, of the size of a blocksigning witness
90-
signblock_witness_limit: u32,
90+
pub signblock_witness_limit: u32,
9191
/// Untweaked `scriptPubKey` used for pegins
92-
fedpeg_program: bitcoin::ScriptBuf,
92+
pub fedpeg_program: bitcoin::ScriptBuf,
9393
/// For v0 fedpeg programs, the witness script of the untweaked
9494
/// pegin address. For future versions, this data has no defined
9595
/// meaning and will be considered "anyone can spend".
96-
fedpegscript: Vec<u8>,
96+
pub fedpegscript: Vec<u8>,
9797
/// "Extension space" used by Liquid for PAK key entries
98-
extension_space: Vec<Vec<u8>>,
98+
pub extension_space: Vec<Vec<u8>>,
9999
}
100100

101101
impl FullParams {

0 commit comments

Comments
 (0)