Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 46c39e8

Browse files
authoredOct 16, 2024··
chore(sequencer): remove unused enable mint env (#1673)
## Summary remove unused enable mint env. We removed the mint module in #1134, the config var was unused but left in.
1 parent 3ff1696 commit 46c39e8

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed
 

‎charts/sequencer/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.25.0
18+
version: 0.25.1
1919
# This is the version number of the application being deployed. This version number should be
2020
# incremented each time you make changes to the application. Versions are not expected to
2121
# follow Semantic Versioning. They should reflect the version the application is using.

‎charts/sequencer/templates/configmaps.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ data:
5757
ASTRIA_SEQUENCER_LOG: "astria_sequencer=debug"
5858
ASTRIA_SEQUENCER_LISTEN_ADDR: "127.0.0.1:{{ .Values.ports.sequencerABCI }}"
5959
ASTRIA_SEQUENCER_DB_FILEPATH: "/sequencer/penumbra.db"
60-
ASTRIA_SEQUENCER_ENABLE_MINT: "false"
6160
# Socket address for GRPC server
6261
ASTRIA_SEQUENCER_GRPC_ADDR: "0.0.0.0:{{ .Values.ports.sequencerGrpc }}"
6362
ASTRIA_SEQUENCER_NO_METRICS: "{{ not .Values.sequencer.metrics.enabled }}"

‎crates/astria-sequencer/src/config.rs

-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ pub struct Config {
1818
pub db_filepath: PathBuf,
1919
/// Log level: debug, info, warn, or error
2020
pub log: String,
21-
/// Set to true to enable the mint component
22-
/// Only used if the "mint" feature is enabled
23-
pub enable_mint: bool,
2421
/// The gRPC endpoint
2522
pub grpc_addr: String,
2623
/// Forces writing trace data to stdout no matter if connected to a tty or not.

0 commit comments

Comments
 (0)
Please sign in to comment.