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+
16# 0.4.7
27
38* Added basic Dev Mode
Original file line number Diff line number Diff line change 11[workspace .package ]
2- version = " 0.4.7 "
2+ version = " 0.4.8 "
33edition = " 2024"
44license = " MIT"
55
Original file line number Diff line number Diff line change @@ -477,6 +477,7 @@ pub struct LightBitcreditBillResult {
477477 pub issue_date : String ,
478478 pub time_of_drawing : u64 ,
479479 pub time_of_maturity : u64 ,
480+ pub last_block_time : u64 ,
480481}
481482
482483impl From < BitcreditBillResult > for LightBitcreditBillResult {
@@ -493,6 +494,7 @@ impl From<BitcreditBillResult> for LightBitcreditBillResult {
493494 issue_date : value. data . issue_date ,
494495 time_of_drawing : value. data . time_of_drawing ,
495496 time_of_maturity : value. data . time_of_maturity ,
497+ last_block_time : value. status . last_block_time ,
496498 }
497499 }
498500}
Original file line number Diff line number Diff line change @@ -741,6 +741,7 @@ pub struct LightBitcreditBillWeb {
741741 pub issue_date : String ,
742742 pub time_of_drawing : u64 ,
743743 pub time_of_maturity : u64 ,
744+ pub last_block_time : u64 ,
744745}
745746
746747impl From < LightBitcreditBillResult > for LightBitcreditBillWeb {
@@ -757,6 +758,7 @@ impl From<LightBitcreditBillResult> for LightBitcreditBillWeb {
757758 issue_date : val. issue_date ,
758759 time_of_drawing : val. time_of_drawing ,
759760 time_of_maturity : val. time_of_maturity ,
761+ last_block_time : val. last_block_time ,
760762 }
761763 }
762764}
You can’t perform that action at this time.
0 commit comments