From 0f2600f83e8a5738d0d62a78b05ff37adda4c1c9 Mon Sep 17 00:00:00 2001 From: Reinis Martinsons Date: Mon, 25 Nov 2024 18:54:09 +0000 Subject: [PATCH] fix: linting Signed-off-by: Reinis Martinsons --- programs/svm-spoke/src/state/instruction_params.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/svm-spoke/src/state/instruction_params.rs b/programs/svm-spoke/src/state/instruction_params.rs index b46bef60c..5b8feeef3 100644 --- a/programs/svm-spoke/src/state/instruction_params.rs +++ b/programs/svm-spoke/src/state/instruction_params.rs @@ -8,7 +8,7 @@ pub struct ExecuteRelayerRefundLeafParams { pub root_bundle_id: u32, // ID of the root bundle to be used. pub relayer_refund_leaf: RelayerRefundLeaf, // Leaf to be verified against the proof and instruct bundle execution. #[max_len(0)] - pub proof: Vec<[u8; 32]>, // Proof to verify the leaf's inclusion in relayer refund merkle tree. + pub proof: Vec<[u8; 32]>, // Proof to verify the leaf's inclusion in relayer refund merkle tree. } #[account]