Skip to content

Commit

Permalink
Merge pull request #305 from BuxOrg/feat/delete-ProcessMempoolOnConnect
Browse files Browse the repository at this point in the history
feat(BUX-234): delete ProcessMempoolOnConnect from config
  • Loading branch information
mrz1836 authored Sep 20, 2023
2 parents c0fbca5 + ddbac50 commit 263890e
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ type (
LoadMonitoredDestinations bool `json:"load_monitored_destinations" mapstructure:"load_monitored_destinations"` // Whether to load monitored destinations`
MaxNumberOfDestinations int `json:"max_number_of_destinations" mapstructure:"max_number_of_destinations"` // how many destinations can the filter hold (default: 100,000)
MonitorDays int `json:"monitor_days" mapstructure:"monitor_days"` // how many days in the past should we monitor an address (default: 7)
ProcessMempoolOnConnect bool `json:"process_mempool_on_connect" mapstructure:"process_mempool_on_connect"` // Whether to process all transactions in the mempool when connecting to centrifuge server
ProcessorType string `json:"processor_type" mapstructure:"processor_type"` // Type of processor to start monitor with. Default: bloom
SaveTransactionDestinations bool `json:"save_transaction_destinations" mapstructure:"save_transaction_destinations"` // Whether to save destinations on monitored transactions
}
Expand Down
1 change: 0 additions & 1 deletion config/envs/development.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@
"load_monitored_destinations": false,
"max_number_of_destinations": 100000,
"monitor_days": 7,
"process_mempool_on_connect": true,
"processor_type": "bloom",
"save_destinations": true
},
Expand Down
1 change: 0 additions & 1 deletion config/envs/docker-compose.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
"load_monitored_destinations": false,
"max_number_of_destinations": 100000,
"monitor_days": 7,
"process_mempool_on_connect": true,
"processor_type": "bloom",
"save_destinations": true
},
Expand Down
1 change: 0 additions & 1 deletion config/envs/production.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
"load_monitored_destinations": false,
"max_number_of_destinations": 100000,
"monitor_days": 7,
"process_mempool_on_connect": true,
"processor_type": "bloom",
"save_destinations": true
},
Expand Down
1 change: 0 additions & 1 deletion config/envs/staging.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
"load_monitored_destinations": false,
"max_number_of_destinations": 100000,
"monitor_days": 7,
"process_mempool_on_connect": true,
"processor_type": "bloom",
"save_destinations": true
},
Expand Down
1 change: 0 additions & 1 deletion config/envs/test.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
"load_monitored_destinations": false,
"max_number_of_destinations": 100000,
"monitor_days": 7,
"process_mempool_on_connect": true,
"processor_type": "bloom",
"save_destinations": true
},
Expand Down

0 comments on commit 263890e

Please sign in to comment.