Skip to content

Commit

Permalink
Remove LIMIT_TX_QUEUE_SOURCE_ACCOUNT core config
Browse files Browse the repository at this point in the history
  • Loading branch information
mollykarcher committed Sep 22, 2023
1 parent 838b1c4 commit 7f0594f
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions ingest/ledgerbackend/toml.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,11 @@ type captiveCoreTomlValues struct {
BucketDirPath string `toml:"BUCKET_DIR_PATH,omitempty"`
// we cannot omitempty because 0 is a valid configuration for HTTP_PORT
// and the default is 11626
HTTPPort uint `toml:"HTTP_PORT"`
PublicHTTPPort bool `toml:"PUBLIC_HTTP_PORT,omitempty"`
NodeNames []string `toml:"NODE_NAMES,omitempty"`
NetworkPassphrase string `toml:"NETWORK_PASSPHRASE,omitempty"`
PeerPort uint `toml:"PEER_PORT,omitempty"`
LimitTxQueueSourceAccount bool `toml:"LIMIT_TX_QUEUE_SOURCE_ACCOUNT,omitempty"`
HTTPPort uint `toml:"HTTP_PORT"`
PublicHTTPPort bool `toml:"PUBLIC_HTTP_PORT,omitempty"`
NodeNames []string `toml:"NODE_NAMES,omitempty"`
NetworkPassphrase string `toml:"NETWORK_PASSPHRASE,omitempty"`
PeerPort uint `toml:"PEER_PORT,omitempty"`
// we cannot omitempty because 0 is a valid configuration for FAILURE_SAFETY
// and the default is -1
FailureSafety int `toml:"FAILURE_SAFETY"`
Expand Down

0 comments on commit 7f0594f

Please sign in to comment.