From 9e0bcd6a77af5591b0c0397a18d74a4659dc0c83 Mon Sep 17 00:00:00 2001 From: Alexander Tesfamichael Date: Thu, 19 Sep 2024 12:11:43 +0200 Subject: [PATCH] feat(etherscan): allow unused --- src/etherscan.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/etherscan.rs b/src/etherscan.rs index e0047c4..be8970a 100644 --- a/src/etherscan.rs +++ b/src/etherscan.rs @@ -12,7 +12,9 @@ pub struct EthSupply2 { /// eth_supply is calculated before adding ETH minted as Eth2Staking rewards and subtracting BurntFees from EIP-1559. #[serde(rename = "EthSupply")] pub eth_supply_min_beacon_issuance_plus_burn: WeiNewtype, + #[allow(dead_code)] pub eth2_staking: WeiNewtype, + #[allow(dead_code)] pub burnt_fees: WeiNewtype, }