Skip to content

Commit

Permalink
fix: integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
xxuejie authored and doitian committed Oct 31, 2019
1 parent bf4e1df commit cf2461b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/src/specs/tx_pool/send_multisig_secp_tx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ fn gen_multi_sign_script(keys: &[Privkey], threshold: u8, require_first_n: u8) -
.collect::<Vec<_>>();
let mut script = vec![0u8, require_first_n, threshold, pubkeys.len() as u8];
pubkeys.iter().for_each(|pubkey| {
script.extend_from_slice(&pubkey.serialize());
script.extend_from_slice(&blake160(&pubkey.serialize()).as_bytes());
});
script.into()
}
Expand Down

0 comments on commit cf2461b

Please sign in to comment.