forked from GeekLaunch/blockchain-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransaction.rs
80 lines (66 loc) · 1.6 KB
/
transaction.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
use super::*;
use std::collections::HashSet;
#[derive(Clone)]
pub struct Output {
pub to_addr: Address,
pub value: u64,
}
impl Hashable for Output {
fn bytes (&self) -> Vec<u8> {
let mut bytes = vec![];
bytes.extend(self.to_addr.as_bytes());
bytes.extend(&u64_bytes(&self.value));
bytes
}
}
pub struct Transaction {
pub inputs: Vec<Output>,
pub outputs: Vec<Output>,
}
impl Transaction {
pub fn input_value (&self) -> u64 {
self.inputs
.iter()
.map(|input| input.value)
.sum()
}
pub fn output_value (&self) -> u64 {
self.outputs
.iter()
.map(|output| output.value)
.sum()
}
pub fn input_hashes (&self) -> HashSet<Hash> {
self.inputs
.iter()
.map(|input| input.hash())
.collect::<HashSet<Hash>>()
}
pub fn output_hashes (&self) -> HashSet<Hash> {
self.outputs
.iter()
.map(|output| output.hash())
.collect::<HashSet<Hash>>()
}
pub fn is_coinbase (&self) -> bool {
self.inputs.len() == 0
}
}
impl Hashable for Transaction {
fn bytes (&self) -> Vec<u8> {
let mut bytes = vec![];
bytes.extend(
self.inputs
.iter()
.flat_map(|input| input.bytes())
.collect::<Vec<u8>>()
);
bytes.extend(
self.outputs
.iter()
.flat_map(|output| output.bytes())
.collect::<Vec<u8>>()
);
bytes
}
}