From d1e47744c773fa38aa22aaaa3dbb9dbffe7e9854 Mon Sep 17 00:00:00 2001 From: AntonD3 <74021421+AntonD3@users.noreply.github.com> Date: Wed, 7 Feb 2024 17:36:31 +0100 Subject: [PATCH] feat: export fee model for the test node (#1030) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## What ❔ Export the fee model module for the era test node ## Checklist - [ ] PR title corresponds to the body of PR (we generate changelog entries from PRs). - [ ] Tests for the changes have been added / updated. - [ ] Documentation comments have been added / updated. - [ ] Code has been formatted via `zk fmt` and `zk lint`. - [ ] Spellcheck has been run via `zk spellcheck`. - [ ] Linkcheck has been run via `zk linkcheck`. --- core/lib/zksync_core/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib/zksync_core/src/lib.rs b/core/lib/zksync_core/src/lib.rs index 3f9a1f690d4..4a3f1b0e593 100644 --- a/core/lib/zksync_core/src/lib.rs +++ b/core/lib/zksync_core/src/lib.rs @@ -82,7 +82,7 @@ pub mod consensus; pub mod consistency_checker; pub mod eth_sender; pub mod eth_watch; -mod fee_model; +pub mod fee_model; pub mod gas_tracker; pub mod genesis; pub mod house_keeper;