From 8957926c7879ae944a9ff28fd3fe1473b2e9c2ed Mon Sep 17 00:00:00 2001 From: sendra Date: Thu, 18 Jul 2024 17:34:00 +0200 Subject: [PATCH] fix: change from pure to view --- scripts/Adapters/DeployZkSyncAdapter.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Adapters/DeployZkSyncAdapter.sol b/scripts/Adapters/DeployZkSyncAdapter.sol index 7d1d0ba0..c65d21ed 100644 --- a/scripts/Adapters/DeployZkSyncAdapter.sol +++ b/scripts/Adapters/DeployZkSyncAdapter.sol @@ -36,7 +36,7 @@ library ZkSyncAdapterDeploymentHelper { abstract contract BaseZkSyncAdapter is BaseAdapterScript { function BRIDGE_HUB() internal view virtual returns (address); - function REFUND_ADDRESS() internal pure virtual returns (address) { + function REFUND_ADDRESS() internal view virtual returns (address) { return address(0); }