0xPolygonHermez / zkevm-node

Go implementation of a node that operates the Polygon zkEVM Network
Other
539 stars 699 forks source link

fix: l2 gas pricer name #3475

Closed leovct closed 6 months ago

leovct commented 8 months ago

Closes #.

What does this PR do?

BREAKING CHANGE 🚨

Adjust the name of the L2 gas pricer to adhere to the formatting consistent with the other components.

const (
    // AGGREGATOR is the aggregator component identifier
    AGGREGATOR = "aggregator"
    // SEQUENCER is the sequencer component identifier
    SEQUENCER = "sequencer"
    // RPC is the RPC component identifier
    RPC = "rpc"
    // SYNCHRONIZER is the synchronizer component identifier
    SYNCHRONIZER = "synchronizer"
    // ETHTXMANAGER is the service that manages the tx sent to L1
    ETHTXMANAGER = "eth-tx-manager"
    // L2GASPRICER is the l2 gas pricer component identifier
    L2GASPRICER = "l2-gas-pricer"
    // SEQUENCE_SENDER is the sequence sender component identifier
    SEQUENCE_SENDER = "sequence-sender"
)

Reviewers

Main reviewers:

Codeowner reviewers:

leovct commented 7 months ago

gentle bump (just in case the PR had not been seen) :)

@tclemos @ToniRamirezM @ARR552