Skip to content

Commit

Permalink
update split_params cmd (thanks @joebebel)
Browse files Browse the repository at this point in the history
  • Loading branch information
cwgoes committed Nov 14, 2022
1 parent e0c293d commit cd83507
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/bin/split_params.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ fn main() {
}
let current_params = File::open(&args[1]).expect("couldn't open params");
let mut current_params = BufReader::with_capacity(1024 * 1024, current_params);
current_params.seek_relative(64);

let masp_spend = MPCParameters::read(&mut current_params, false)
.expect("couldn't deserialize MASP Spend params");
Expand Down

0 comments on commit cd83507

Please sign in to comment.