From 53b8e7669de7b44613f2857ac4a42a4f323b95db Mon Sep 17 00:00:00 2001 From: Kodey Kilday-Thomas Date: Tue, 10 Dec 2024 11:57:02 +0000 Subject: [PATCH] chore: removed used method from interface --- .../functions/v1_3_0_zksync/interfaces/zksync/ISystemContext.sol | 1 - 1 file changed, 1 deletion(-) diff --git a/contracts/src/v0.8/functions/v1_3_0_zksync/interfaces/zksync/ISystemContext.sol b/contracts/src/v0.8/functions/v1_3_0_zksync/interfaces/zksync/ISystemContext.sol index 44a5eaeac92..6d9232f8f6a 100644 --- a/contracts/src/v0.8/functions/v1_3_0_zksync/interfaces/zksync/ISystemContext.sol +++ b/contracts/src/v0.8/functions/v1_3_0_zksync/interfaces/zksync/ISystemContext.sol @@ -6,5 +6,4 @@ address constant SYSTEM_CONTEXT = address(0x000000000000000000000000000000000000 interface ISystemContext { function gasPrice() external view returns (uint256); function gasPerPubdataByte() external view returns (uint256 gasPerPubdataByte); - function getCurrentPubdataSpent() external view returns (uint256 currentPubdataSpent); }