Commit 3422bcc
authored
closing: #1663
# Breaking Changes
removed `CoinStatus` and `created_at` from `Coin`
```rust
//old
pub struct Coin {
pub amount: u64,
pub block_created: u32,
pub asset_id: AssetId,
pub utxo_id: UtxoId,
pub owner: Bech32Address,
pub status: CoinStatus,
}
```
```rust
//new
pub struct Coin {
pub amount: u64,
pub asset_id: AssetId,
pub utxo_id: UtxoId,
pub owner: Bech32Address,
}
```
1 parent 1bb6b69 commit 3422bcc
3 files changed
+3
-23
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
11 | | - | |
12 | | - | |
13 | | - | |
14 | | - | |
15 | | - | |
16 | | - | |
17 | | - | |
18 | 11 | | |
19 | 12 | | |
20 | 13 | | |
21 | | - | |
22 | 14 | | |
23 | 15 | | |
24 | 16 | | |
25 | | - | |
26 | 17 | | |
27 | 18 | | |
28 | 19 | | |
29 | 20 | | |
30 | 21 | | |
31 | 22 | | |
32 | | - | |
33 | 23 | | |
34 | 24 | | |
35 | 25 | | |
36 | | - | |
37 | 26 | | |
38 | 27 | | |
39 | 28 | | |
| |||
43 | 32 | | |
44 | 33 | | |
45 | 34 | | |
46 | | - | |
47 | | - | |
48 | 35 | | |
49 | 36 | | |
50 | 37 | | |
| 38 | + | |
51 | 39 | | |
52 | 40 | | |
53 | 41 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
345 | 345 | | |
346 | 346 | | |
347 | 347 | | |
348 | | - | |
349 | | - | |
350 | | - | |
351 | | - | |
352 | | - | |
| 348 | + | |
353 | 349 | | |
354 | 350 | | |
355 | 351 | | |
| |||
526 | 522 | | |
527 | 523 | | |
528 | 524 | | |
529 | | - | |
530 | 525 | | |
531 | 526 | | |
532 | 527 | | |
533 | | - | |
534 | 528 | | |
535 | 529 | | |
536 | 530 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
11 | | - | |
| 11 | + | |
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
| |||
96 | 96 | | |
97 | 97 | | |
98 | 98 | | |
99 | | - | |
100 | | - | |
101 | 99 | | |
102 | 100 | | |
103 | 101 | | |
| |||
0 commit comments