You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: xrpl_api/src/api/ledger.rs
+14-14
Original file line number
Diff line number
Diff line change
@@ -86,11 +86,11 @@ impl LedgerExpandRequest {
86
86
#[derive(Debug,Deserialize)]
87
87
pubstructLedgerResponse<TransactionType>{
88
88
/// Unique identifying hash of the entire ledger.
89
-
publedger_hash:String,
89
+
publedger_hash:Option<String>,
90
90
/// The Ledger Index of this ledger.
91
-
publedger_index:u32,
91
+
publedger_index:Option<u32>,
92
92
/// (May be omitted) If true, this is a validated ledger version. If omitted or set to false, this ledger's data is not final.
93
-
pubvalidated:bool,
93
+
pubvalidated:Option<bool>,
94
94
/// (Omitted unless requested with the queue parameter) Array of objects describing queued transactions, in the same order as the queue.
95
95
/// If the request specified expand as true, members contain full representations of the transactions, in either JSON or binary depending on whether the request specified binary as true.
0 commit comments