diff --git a/rusk/tests/services/protected.rs b/rusk/tests/services/protected.rs index 6ccfac124d..cdaa13d2bc 100644 --- a/rusk/tests/services/protected.rs +++ b/rusk/tests/services/protected.rs @@ -35,6 +35,7 @@ fn initial_state>(dir: P) -> Result { } const SENDER_INDEX: u64 = 0; +const CALL_DATA: [u8; 1024] = [0u8; 1024]; fn verify_protected_method( contract: ContractId, @@ -53,7 +54,7 @@ fn verify_protected_method( &mut rng, contract.to_bytes().into(), String::from(protected_method), - (), + CALL_DATA, SENDER_INDEX, &refund, GAS_LIMIT,