From a78d89af6ac7e6fe4de89ce91623db26ce961412 Mon Sep 17 00:00:00 2001 From: Ahmed Sagdati Date: Fri, 15 Nov 2024 00:45:41 +0900 Subject: [PATCH] fix forc warnings --- e2e/sway/types/contracts/nested_structs/src/main.sw | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e/sway/types/contracts/nested_structs/src/main.sw b/e2e/sway/types/contracts/nested_structs/src/main.sw index 8c8545e32..6aec2bab5 100644 --- a/e2e/sway/types/contracts/nested_structs/src/main.sw +++ b/e2e/sway/types/contracts/nested_structs/src/main.sw @@ -28,7 +28,7 @@ abi MyContract { #[payable] fn check_struct_integrity(arg: AllStruct) -> bool; #[payable] - fn i_am_called_differently(arg1: AllStruct, arg2: MemoryAddress); + fn i_am_called_differently(_arg1: AllStruct, _arg2: MemoryAddress); fn nested_struct_with_reserved_keyword_substring(call_data: CallData) -> CallData; } @@ -48,7 +48,7 @@ impl MyContract for Contract { } #[payable] - fn i_am_called_differently(arg1: AllStruct, arg2: MemoryAddress) {} + fn i_am_called_differently(_arg1: AllStruct, _arg2: MemoryAddress) {} fn nested_struct_with_reserved_keyword_substring(call_data: CallData) -> CallData { call_data