From b8e28b8c5500b8d806b4a0292de5a396a4cf8a86 Mon Sep 17 00:00:00 2001 From: Justin Starry Date: Wed, 3 Mar 2021 17:31:52 +0800 Subject: [PATCH] Remove unnecessary packet meta abi lock (#15653) --- sdk/src/packet.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sdk/src/packet.rs b/sdk/src/packet.rs index 8e10470f35..dd5f1a2698 100644 --- a/sdk/src/packet.rs +++ b/sdk/src/packet.rs @@ -12,8 +12,7 @@ use std::{ /// 8 bytes is the size of the fragment header pub const PACKET_DATA_SIZE: usize = 1280 - 40 - 8; -#[frozen_abi(digest = "9AiPd36yycNg18hDuCBVGwpTfzjX1VV4QtUKUdqeyAKH")] -#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize, AbiExample)] +#[derive(Clone, Default, Debug, PartialEq)] #[repr(C)] pub struct Meta { pub size: usize,