Create OutPoint from hash and n

This commit is contained in:
Aditya Kulkarni 2019-09-10 10:30:04 -07:00 committed by Jack Grigg
parent fab9160b26
commit 885e09a82f
No known key found for this signature in database
GPG Key ID: 9E8255172BBF9898
1 changed files with 4 additions and 0 deletions

View File

@ -28,6 +28,10 @@ pub struct OutPoint {
}
impl OutPoint {
pub fn new(hash: [u8; 32], n: u32) -> Self {
OutPoint { hash, n }
}
pub fn read<R: Read>(mut reader: R) -> io::Result<Self> {
let mut hash = [0; 32];
reader.read_exact(&mut hash)?;