From 716caeb17c8c5257f5ebd2e5a759ae27e5b979b4 Mon Sep 17 00:00:00 2001 From: Tyera Eulberg Date: Tue, 19 Nov 2019 15:55:32 -0700 Subject: [PATCH] Use camelCase (#7050) automerge --- sdk/src/instruction.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/sdk/src/instruction.rs b/sdk/src/instruction.rs index f7e6c8cab..138008ea6 100644 --- a/sdk/src/instruction.rs +++ b/sdk/src/instruction.rs @@ -165,6 +165,7 @@ impl WithSigner for Vec { /// An instruction to execute a program #[derive(Serialize, Deserialize, Debug, PartialEq, Eq, Clone)] +#[serde(rename_all = "camelCase")] pub struct CompiledInstruction { /// Index into the transaction keys array indicating the program account that executes this instruction pub program_id_index: u8,