You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: rfq/cli.go
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,12 @@ const (
22
22
typeCliConfigstruct {
23
23
PriceOracleAddressstring`long:"priceoracleaddress" description:"Price oracle gRPC server address (rfqrpc://<hostname>:<port>). To use the integrated mock, use the following value: use_mock_price_oracle_service_promise_to_not_use_on_mainnet"`
24
24
25
+
PriceOracleTLSInsecurebool`long:"priceoracletlsinsecure" description:"Disable verification of price oracle certificates. Communication with the price oracle will be in cleartext over HTTP, so should only be used for testing."`
26
+
27
+
PriceOracleTLSNoSystemCAsbool`long:"priceoracletlsnosystemcas" description:"Disable use of the operating system's list of root certificate authorities."`
28
+
29
+
PriceOracleTLSCertPathstring`long:"priceoracletlscertpath" description:"Path to a PEM-encoded x509 certificate that will be used to construct a TLS connection with the price oracle."`
30
+
25
31
SendPriceHintbool`long:"sendpricehint" description:"Send a price hint from the local price oracle to the RFQ peer when requesting a quote. For privacy reasons, this should only be turned on for self-hosted or trusted price oracles."`
26
32
27
33
PriceOracleSendPeerIdbool`long:"priceoraclesendpeerid" description:"Send the peer ID (public key of the peer) to the price oracle when requesting a price rate. For privacy reasons, this should only be turned on for self-hosted or trusted price oracles."`
0 commit comments