From 795955fb1b3c75eb5e9fa181aa15aaecf869bfbf Mon Sep 17 00:00:00 2001 From: jkrvivian Date: Wed, 30 Oct 2024 20:27:55 +0800 Subject: [PATCH] refactor(iota-json-rpc-types): remove require_local_execution --- crates/iota-json-rpc-types/src/iota_transaction.rs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/crates/iota-json-rpc-types/src/iota_transaction.rs b/crates/iota-json-rpc-types/src/iota_transaction.rs index af0cdca061b..23e4cdfc8c0 100644 --- a/crates/iota-json-rpc-types/src/iota_transaction.rs +++ b/crates/iota-json-rpc-types/src/iota_transaction.rs @@ -184,14 +184,6 @@ impl IotaTransactionBlockResponseOptions { } } - #[deprecated( - since = "1.33.0", - note = "Balance and object changes no longer require local execution" - )] - pub fn require_local_execution(&self) -> bool { - self.show_balance_changes || self.show_object_changes - } - pub fn require_input(&self) -> bool { self.show_input || self.show_raw_input || self.show_object_changes }