diff --git a/compatibility/src/sdk/v5_0_0_genesis_transaction_script_builder.rs b/compatibility/src/sdk/v5_0_0_genesis_transaction_script_builder.rs index 28f0ff9d9..8688e5990 100644 --- a/compatibility/src/sdk/v5_0_0_genesis_transaction_script_builder.rs +++ b/compatibility/src/sdk/v5_0_0_genesis_transaction_script_builder.rs @@ -35,9 +35,11 @@ type Bytes = Vec; /// pub fn decode(&Script) -> Option { .. } /// } /// ``` -#[derive(Clone, Debug, PartialEq, PartialOrd)] -#[cfg_attr(feature = "fuzzing", derive(proptest_derive::Arbitrary))] -#[cfg_attr(feature = "fuzzing", proptest(no_params))] + +//////// 0L //////// +#[derive(Clone, Debug, PartialEq, PartialOrd, Eq, serde::Deserialize, serde::Serialize)] +// #[cfg_attr(feature = "fuzzing", derive(proptest_derive::Arbitrary))] +// #[cfg_attr(feature = "fuzzing", proptest(no_params))] pub enum ScriptCall { /// # Summary /// Adds a zero `Currency` balance to the sending `account`. This will enable `account` to diff --git a/compatibility/src/sdk/v5_2_0_transaction_script_builder.rs b/compatibility/src/sdk/v5_2_0_transaction_script_builder.rs index 808ffe78c..33900326d 100644 --- a/compatibility/src/sdk/v5_2_0_transaction_script_builder.rs +++ b/compatibility/src/sdk/v5_2_0_transaction_script_builder.rs @@ -35,7 +35,10 @@ type Bytes = Vec; /// pub fn decode(&Script) -> Option { .. } /// } /// ``` -#[derive(Clone, Debug, PartialEq, PartialOrd)] + +//////// 0L //////// +#[derive(Clone, Debug, PartialEq, PartialOrd, Eq, serde::Deserialize, serde::Serialize)] + // #[cfg_attr(feature = "fuzzing", derive(proptest_derive::Arbitrary))] // #[cfg_attr(feature = "fuzzing", proptest(no_params))] pub enum ScriptCall { diff --git a/compatibility/src/sdk/v6_libra_framework_sdk_builder.rs b/compatibility/src/sdk/v6_libra_framework_sdk_builder.rs index 8e2b55ce6..9b56ca52e 100644 --- a/compatibility/src/sdk/v6_libra_framework_sdk_builder.rs +++ b/compatibility/src/sdk/v6_libra_framework_sdk_builder.rs @@ -45,8 +45,8 @@ type Bytes = Vec; // explorer and data warehouse //////// end //////// #[derive(Clone, Debug, PartialEq, Eq, serde::Deserialize, serde::Serialize)] -#[cfg_attr(feature = "fuzzing", derive(proptest_derive::Arbitrary))] -#[cfg_attr(feature = "fuzzing", proptest(no_params))] +// #[cfg_attr(feature = "fuzzing", derive(proptest_derive::Arbitrary))] +// #[cfg_attr(feature = "fuzzing", proptest(no_params))] pub enum EntryFunctionCall { /// Offers rotation capability on behalf of `account` to the account at address `recipient_address`. /// An account can delegate its rotation capability to only one other address at one time. If the account