From 7f0594f9dc8c363b534335ba840264f3c574ba24 Mon Sep 17 00:00:00 2001 From: Molly Karcher Date: Fri, 22 Sep 2023 12:26:43 -0400 Subject: [PATCH] Remove LIMIT_TX_QUEUE_SOURCE_ACCOUNT core config --- ingest/ledgerbackend/toml.go | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/ingest/ledgerbackend/toml.go b/ingest/ledgerbackend/toml.go index 8e18aa9d13..7c42bc11c8 100644 --- a/ingest/ledgerbackend/toml.go +++ b/ingest/ledgerbackend/toml.go @@ -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"`