From b6ff67834f62bf10efea073085ed46180ec44448 Mon Sep 17 00:00:00 2001 From: agusduha Date: Mon, 7 Oct 2024 15:40:43 -0300 Subject: [PATCH] fix: fee vault compiler error --- packages/contracts-bedrock/scripts/ops/FeeVaultWithdrawal.s.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/contracts-bedrock/scripts/ops/FeeVaultWithdrawal.s.sol b/packages/contracts-bedrock/scripts/ops/FeeVaultWithdrawal.s.sol index e19cd7e994bdb..5a7b488476144 100644 --- a/packages/contracts-bedrock/scripts/ops/FeeVaultWithdrawal.s.sol +++ b/packages/contracts-bedrock/scripts/ops/FeeVaultWithdrawal.s.sol @@ -65,7 +65,7 @@ contract FeeVaultWithdrawal is Script { } /// @notice Logs the information relevant to the user. - function log(uint256 _balance, address _recipient, address _vault) internal view { + function log(uint256 _balance, address _recipient, address _vault) internal pure { string memory logline = string.concat( "Withdrawing ", vm.toString(_balance), " to ", vm.toString(_recipient), " from ", vm.toString(_vault) );