From 78f9d8b66d8ea5f15ed0983862673c3c06a03023 Mon Sep 17 00:00:00 2001 From: Athar Mohammad <56029409+atharmohammad@users.noreply.github.com> Date: Wed, 8 Feb 2023 02:12:58 +0530 Subject: [PATCH] Fix camelCase response for RpcPrioritizationFee (#30162) --- rpc-client-api/src/response.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/rpc-client-api/src/response.rs b/rpc-client-api/src/response.rs index 1cfcf54656..e05178af2b 100644 --- a/rpc-client-api/src/response.rs +++ b/rpc-client-api/src/response.rs @@ -546,6 +546,7 @@ pub struct RpcSnapshotSlotInfo { } #[derive(Serialize, Deserialize, Clone, Copy, Debug, PartialEq, Eq)] +#[serde(rename_all = "camelCase")] pub struct RpcPrioritizationFee { pub slot: Slot, pub prioritization_fee: u64,