From 1f3eed6d2b658408a5a0ddc2ddfc6c7ee63a1dc7 Mon Sep 17 00:00:00 2001 From: canonbrother Date: Tue, 2 Jul 2024 16:43:26 +0800 Subject: [PATCH] VaultPagination.limit usize --- 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 324a5c0..f2e966d 100644 --- a/json/src/vault.rs +++ b/json/src/vault.rs @@ -137,7 +137,7 @@ pub struct WithdrawVault { pub struct VaultPagination { start: Option, including_start: Option, - limit: Option, + limit: Option, } #[derive(Debug, Serialize, Deserialize, Default)]