From 116b7dff133664755d9c4cfebf02d8e5c8963b3f Mon Sep 17 00:00:00 2001 From: canonbrother Date: Wed, 19 Jun 2024 10:34:54 +0800 Subject: [PATCH] VaultLiquidationBatch u64 -> u32 --- json/src/vault.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/json/src/vault.rs b/json/src/vault.rs index 1de9835..3ef51fa 100644 --- a/json/src/vault.rs +++ b/json/src/vault.rs @@ -141,7 +141,7 @@ pub struct AuctionPaginationStart { #[derive(Debug, Serialize, Deserialize)] #[serde(rename_all = "camelCase")] pub struct VaultLiquidationBatch { - pub index: u64, + pub index: u32, pub collaterals: Vec, pub loan: String, pub highest_bid: Option,