From 687a23bee9096077f0fe9d51860917c16262b560 Mon Sep 17 00:00:00 2001 From: Aaryamann Challani <43716372+rymnc@users.noreply.github.com> Date: Fri, 10 Jan 2025 16:05:53 +0530 Subject: [PATCH] chore: remove unused trait bound MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: RafaƂ Chabowski <88321181+rafal-ch@users.noreply.github.com> --- .../gas_price_service/src/common/fuel_core_storage_adapter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/services/gas_price_service/src/common/fuel_core_storage_adapter.rs b/crates/services/gas_price_service/src/common/fuel_core_storage_adapter.rs index bea20eb336..1cc67a0f0e 100644 --- a/crates/services/gas_price_service/src/common/fuel_core_storage_adapter.rs +++ b/crates/services/gas_price_service/src/common/fuel_core_storage_adapter.rs @@ -119,7 +119,7 @@ impl GasPriceServiceAtomicStorage for Storage where Storage: 'static, Storage: GetMetadataStorage + GetLatestRecordedHeight, - Storage: KeyValueInspect + Modifiable + Send + Sync + Clone, + Storage: KeyValueInspect + Modifiable + Send + Sync, { type Transaction<'a> = StorageTransaction<&'a mut Storage> where Self: 'a;