Make OutPoint fields pub

This commit is contained in:
Aditya Kulkarni
2019-09-10 10:00:24 -07:00
parent 99d0f78636
commit 1056db3bea

View File

@@ -21,8 +21,8 @@ const ZC_NUM_JS_OUTPUTS: usize = 2;
#[derive(Debug)] #[derive(Debug)]
pub struct OutPoint { pub struct OutPoint {
hash: [u8; 32], pub hash: [u8; 32],
n: u32, pub n: u32,
} }
impl OutPoint { impl OutPoint {