fix: omit l1GasFee in json

This commit is contained in:
Michal Iskierko 2024-04-05 16:06:37 +02:00 committed by Michał Iskierko
parent 9986125982
commit debc1485de
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ type SuggestedFees struct {
MaxFeePerGasLow *big.Float `json:"maxFeePerGasLow"` MaxFeePerGasLow *big.Float `json:"maxFeePerGasLow"`
MaxFeePerGasMedium *big.Float `json:"maxFeePerGasMedium"` MaxFeePerGasMedium *big.Float `json:"maxFeePerGasMedium"`
MaxFeePerGasHigh *big.Float `json:"maxFeePerGasHigh"` MaxFeePerGasHigh *big.Float `json:"maxFeePerGasHigh"`
L1GasFee *big.Float `json:"l1GasFee"` L1GasFee *big.Float `json:"l1GasFee,omitempty"`
EIP1559Enabled bool `json:"eip1559Enabled"` EIP1559Enabled bool `json:"eip1559Enabled"`
} }