Skip to content

Commit 19eb8fc

Browse files
committed
Make FullParams members public
1 parent 2e39df4 commit 19eb8fc

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
@@ -75,17 +75,17 @@ impl Serialize for HexBytesArray<'_> {
7575
#[derive(Clone, Eq, Hash, PartialEq, PartialOrd, Ord)]
7676
pub struct FullParams {
7777
/// "scriptPubKey" used for block signing
78-
signblockscript: Script,
78+
pub signblockscript: Script,
7979
/// Maximum, in bytes, of the size of a blocksigning witness
80-
signblock_witness_limit: u32,
80+
pub signblock_witness_limit: u32,
8181
/// Untweaked `scriptPubKey` used for pegins
82-
fedpeg_program: bitcoin::ScriptBuf,
82+
pub fedpeg_program: bitcoin::ScriptBuf,
8383
/// For v0 fedpeg programs, the witness script of the untweaked
8484
/// pegin address. For future versions, this data has no defined
8585
/// meaning and will be considered "anyone can spend".
86-
fedpegscript: Vec<u8>,
86+
pub fedpegscript: Vec<u8>,
8787
/// "Extension space" used by Liquid for PAK key entries
88-
extension_space: Vec<Vec<u8>>,
88+
pub extension_space: Vec<Vec<u8>>,
8989
}
9090

9191
impl FullParams {

0 commit comments

Comments
 (0)