Exchanges: Add config variable to set bypassing of orderbook verification by exchange (#614)

* Exchanges: Add config variable to set bypassing of orderbook verification

* Exchanges: Consolidate orderbook variables into config struct

* Exchanges: Addr nit; set verification bypass on websocket book implementations
This commit is contained in:
Ryan O'Hara-Reid
2021-01-06 12:56:30 +11:00
committed by GitHub
parent 010fab02ca
commit 7431bf8866
56 changed files with 291 additions and 128 deletions

View File

@@ -590,6 +590,7 @@ func (e *Base) SetupDefaults(exch *config.ExchangeConfig) error {
return err
}
e.BaseCurrencies = exch.BaseCurrencies
e.OrderbookVerificationBypass = exch.OrderbookConfig.VerificationBypass
return nil
}