Skip to content

Commit

Permalink
remove enable_mint env
Browse files Browse the repository at this point in the history
  • Loading branch information
quasystaty1 committed Oct 16, 2024
1 parent 3ff1696 commit 30ef51e
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion charts/sequencer/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.25.0
version: 0.25.1
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
Expand Down
1 change: 0 additions & 1 deletion charts/sequencer/templates/configmaps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ data:
ASTRIA_SEQUENCER_LOG: "astria_sequencer=debug"
ASTRIA_SEQUENCER_LISTEN_ADDR: "127.0.0.1:{{ .Values.ports.sequencerABCI }}"
ASTRIA_SEQUENCER_DB_FILEPATH: "/sequencer/penumbra.db"
ASTRIA_SEQUENCER_ENABLE_MINT: "false"
# Socket address for GRPC server
ASTRIA_SEQUENCER_GRPC_ADDR: "0.0.0.0:{{ .Values.ports.sequencerGrpc }}"
ASTRIA_SEQUENCER_NO_METRICS: "{{ not .Values.sequencer.metrics.enabled }}"
Expand Down
3 changes: 0 additions & 3 deletions crates/astria-sequencer/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ pub struct Config {
pub db_filepath: PathBuf,
/// Log level: debug, info, warn, or error
pub log: String,
/// Set to true to enable the mint component
/// Only used if the "mint" feature is enabled
pub enable_mint: bool,
/// The gRPC endpoint
pub grpc_addr: String,
/// Forces writing trace data to stdout no matter if connected to a tty or not.
Expand Down

0 comments on commit 30ef51e

Please sign in to comment.