File tree Expand file tree Collapse file tree 4 files changed +10
-1
lines changed Expand file tree Collapse file tree 4 files changed +10
-1
lines changed Original file line number Diff line number Diff line change
1
+ # 0.4.8
2
+
3
+ * Fix reject block propagation
4
+ * Add ` last_block_time ` to ` LightBitcreditBillResult `
5
+
1
6
# 0.4.7
2
7
3
8
* Added basic Dev Mode
Original file line number Diff line number Diff line change 1
1
[workspace .package ]
2
- version = " 0.4.7 "
2
+ version = " 0.4.8 "
3
3
edition = " 2024"
4
4
license = " MIT"
5
5
Original file line number Diff line number Diff line change @@ -477,6 +477,7 @@ pub struct LightBitcreditBillResult {
477
477
pub issue_date : String ,
478
478
pub time_of_drawing : u64 ,
479
479
pub time_of_maturity : u64 ,
480
+ pub last_block_time : u64 ,
480
481
}
481
482
482
483
impl From < BitcreditBillResult > for LightBitcreditBillResult {
@@ -493,6 +494,7 @@ impl From<BitcreditBillResult> for LightBitcreditBillResult {
493
494
issue_date : value. data . issue_date ,
494
495
time_of_drawing : value. data . time_of_drawing ,
495
496
time_of_maturity : value. data . time_of_maturity ,
497
+ last_block_time : value. status . last_block_time ,
496
498
}
497
499
}
498
500
}
Original file line number Diff line number Diff line change @@ -741,6 +741,7 @@ pub struct LightBitcreditBillWeb {
741
741
pub issue_date : String ,
742
742
pub time_of_drawing : u64 ,
743
743
pub time_of_maturity : u64 ,
744
+ pub last_block_time : u64 ,
744
745
}
745
746
746
747
impl From < LightBitcreditBillResult > for LightBitcreditBillWeb {
@@ -757,6 +758,7 @@ impl From<LightBitcreditBillResult> for LightBitcreditBillWeb {
757
758
issue_date : val. issue_date ,
758
759
time_of_drawing : val. time_of_drawing ,
759
760
time_of_maturity : val. time_of_maturity ,
761
+ last_block_time : val. last_block_time ,
760
762
}
761
763
}
762
764
}
You can’t perform that action at this time.
0 commit comments