1 use bitcoin::blockdata::transaction::TxOut;
3 use std::cmp::Ordering;
5 pub fn sort_outputs<T, C : Fn(&T, &T) -> Ordering>(outputs: &mut Vec<(TxOut, T)>, tie_breaker: C) {
6 outputs.sort_unstable_by(|a, b| {
7 a.0.value.cmp(&b.0.value).then_with(|| {
8 a.0.script_pubkey[..].cmp(&b.0.script_pubkey[..]).then_with(|| {
9 tie_breaker(&a.1, &b.1)
19 use bitcoin::blockdata::script::{Script, Builder};
20 use bitcoin::blockdata::transaction::TxOut;
25 fn sort_output_by_value() {
28 script_pubkey: Builder::new().push_int(0).into_script()
30 let txout1_ = txout1.clone();
34 script_pubkey: Builder::new().push_int(0).into_script()
36 let txout2_ = txout2.clone();
38 let mut outputs = vec![(txout1, "ignore"), (txout2, "ignore")];
39 sort_outputs(&mut outputs, |_, _| { unreachable!(); });
43 &vec![(txout2_, "ignore"), (txout1_, "ignore")]
48 fn sort_output_by_script_pubkey() {
51 script_pubkey: Builder::new().push_int(3).into_script(),
53 let txout1_ = txout1.clone();
57 script_pubkey: Builder::new().push_int(1).push_int(2).into_script()
59 let txout2_ = txout2.clone();
61 let mut outputs = vec![(txout1, "ignore"), (txout2, "ignore")];
62 sort_outputs(&mut outputs, |_, _| { unreachable!(); });
66 &vec![(txout2_, "ignore"), (txout1_, "ignore")]
71 fn sort_output_by_bip_test() {
74 script_pubkey: script_from_hex("41046a0765b5865641ce08dd39690aade26dfbf5511430ca428a3089261361cef170e3929a68aee3d8d4848b0c5111b0a37b82b86ad559fd2a745b44d8e8d9dfdc0cac")
76 let txout1_ = txout1.clone();
78 // doesn't deserialize cleanly:
81 script_pubkey: script_from_hex("41044a656f065871a353f216ca26cef8dde2f03e8c16202d2e8ad769f02032cb86a5eb5e56842e92e19141d60a01928f8dd2c875a390f67c1f6c94cfc617c0ea45afac")
83 let txout2_ = txout2.clone();
85 let mut outputs = vec![(txout1, "ignore"), (txout2, "ignore")];
86 sort_outputs(&mut outputs, |_, _| { unreachable!(); });
88 assert_eq!(&outputs, &vec![(txout1_, "ignore"), (txout2_, "ignore")]);
91 fn script_from_hex(hex_str: &str) -> Script {
92 Script::from(decode(hex_str).unwrap())
95 macro_rules! bip_txout_tests {
96 ($($name:ident: $value:expr,)*) => {
100 let expected_raw: Vec<(u64, &str)> = $value;
101 let expected: Vec<(TxOut, &str)> = expected_raw.iter()
102 .map(|txout_raw| TxOut {
104 script_pubkey: script_from_hex(txout_raw.1)
105 }).map(|txout| (txout, "ignore"))
108 let mut outputs = expected.clone();
109 outputs.reverse(); // prep it
111 // actually do the work!
112 sort_outputs(&mut outputs, |_, _| { unreachable!(); });
114 assert_eq!(outputs, expected);
120 const TXOUT1: [(u64, &str); 2] = [
121 (400057456, "76a9144a5fba237213a062f6f57978f796390bdcf8d01588ac"),
122 (40000000000, "76a9145be32612930b8323add2212a4ec03c1562084f8488ac"),
124 const TXOUT2: [(u64, &str); 2] = [
125 (100000000, "41046a0765b5865641ce08dd39690aade26dfbf5511430ca428a3089261361cef170e3929a68aee3d8d4848b0c5111b0a37b82b86ad559fd2a745b44d8e8d9dfdc0cac"),
126 (2400000000, "41044a656f065871a353f216ca26cef8dde2f03e8c16202d2e8ad769f02032cb86a5eb5e56842e92e19141d60a01928f8dd2c875a390f67c1f6c94cfc617c0ea45afac"),
129 bip69_txout_test_1: TXOUT1.to_vec(),
130 bip69_txout_test_2: TXOUT2.to_vec(),