mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-06-03 23:16:53 +00:00
orderbook: change Base struct name to Book (#1914)
* orderbook: change Base struct name to Snapshot * linter: fix * Update exchanges/exchange.go Co-authored-by: Gareth Kirwan <gbjkirwan@gmail.com> * Update exchanges/orderbook/depth.go Co-authored-by: Gareth Kirwan <gbjkirwan@gmail.com> * Update exchanges/orderbook/orderbook_types.go Co-authored-by: Gareth Kirwan <gbjkirwan@gmail.com> * Snapshot -> Book * Tranche(s) -> Level(s) * Tranche(s) -> Level(s) * rm tranche ref * linter: fix * linter: rides again * update tests * Update exchange/websocket/buffer/buffer.go Co-authored-by: Gareth Kirwan <gbjkirwan@gmail.com> * Update backtester/eventhandlers/exchange/slippage/slippage.go Co-authored-by: Gareth Kirwan <gbjkirwan@gmail.com> * Update exchange/websocket/buffer/buffer.go Co-authored-by: Adrian Gallagher <adrian.gallagher@thrasher.io> * Update exchange/websocket/buffer/buffer.go Co-authored-by: Adrian Gallagher <adrian.gallagher@thrasher.io> * Update exchanges/orderbook/orderbook_test.go Co-authored-by: Adrian Gallagher <adrian.gallagher@thrasher.io> * Update exchanges/orderbook/orderbook_test.go Co-authored-by: Adrian Gallagher <adrian.gallagher@thrasher.io> * Update exchanges/orderbook/orderbook_test.go Co-authored-by: Adrian Gallagher <adrian.gallagher@thrasher.io> * Update exchanges/orderbook/orderbook_types.go Co-authored-by: Adrian Gallagher <adrian.gallagher@thrasher.io> * Update exchanges/orderbook/orderbook_types.go Co-authored-by: Adrian Gallagher <adrian.gallagher@thrasher.io> * fixup tests * Update exchanges/orderbook/orderbook_test.go Co-authored-by: Gareth Kirwan <gbjkirwan@gmail.com> * Update exchanges/orderbook/orderbook_test.go Co-authored-by: Gareth Kirwan <gbjkirwan@gmail.com> * Update exchanges/orderbook/orderbook_test.go Co-authored-by: Gareth Kirwan <gbjkirwan@gmail.com> * Update exchanges/orderbook/orderbook_test.go Co-authored-by: Gareth Kirwan <gbjkirwan@gmail.com> * Update exchanges/orderbook/orderbook_test.go Co-authored-by: Gareth Kirwan <gbjkirwan@gmail.com> * Update exchanges/orderbook/orderbook_test.go Co-authored-by: Gareth Kirwan <gbjkirwan@gmail.com> * Update exchanges/orderbook/orderbook_test.go Co-authored-by: Gareth Kirwan <gbjkirwan@gmail.com> * Update exchanges/orderbook/orderbook_test.go Co-authored-by: Gareth Kirwan <gbjkirwan@gmail.com> * Update exchanges/orderbook/orderbook_types.go Co-authored-by: Gareth Kirwan <gbjkirwan@gmail.com> * Update exchanges/orderbook/orderbook_types.go Co-authored-by: Gareth Kirwan <gbjkirwan@gmail.com> * gk: nits and rm stuff that is not needed * Update exchanges/orderbook/orderbook_test.go Co-authored-by: Gareth Kirwan <gbjkirwan@gmail.com> * gk: nits --------- Co-authored-by: shazbert <ryan.oharareid@thrasher.io> Co-authored-by: Gareth Kirwan <gbjkirwan@gmail.com> Co-authored-by: Adrian Gallagher <adrian.gallagher@thrasher.io>
This commit is contained in:
@@ -176,25 +176,25 @@ func TestPrintOrderbookSummary(t *testing.T) {
|
||||
assert.NoError(t, err)
|
||||
|
||||
atomic.StoreInt32(&m.started, 1)
|
||||
m.PrintOrderbookSummary(&orderbook.Base{
|
||||
m.PrintOrderbookSummary(&orderbook.Book{
|
||||
Pair: currency.NewPair(currency.AUD, currency.USD),
|
||||
}, "REST", nil)
|
||||
|
||||
m.fiatDisplayCurrency = currency.USD
|
||||
m.PrintOrderbookSummary(&orderbook.Base{
|
||||
m.PrintOrderbookSummary(&orderbook.Book{
|
||||
Pair: currency.NewPair(currency.AUD, currency.USD),
|
||||
}, "REST", nil)
|
||||
|
||||
m.fiatDisplayCurrency = currency.JPY
|
||||
m.PrintOrderbookSummary(&orderbook.Base{
|
||||
m.PrintOrderbookSummary(&orderbook.Book{
|
||||
Pair: currency.NewPair(currency.AUD, currency.USD),
|
||||
}, "REST", nil)
|
||||
|
||||
m.PrintOrderbookSummary(&orderbook.Base{
|
||||
m.PrintOrderbookSummary(&orderbook.Book{
|
||||
Pair: currency.NewPair(currency.AUD, currency.USD),
|
||||
}, "REST", common.ErrNotYetImplemented)
|
||||
|
||||
m.PrintOrderbookSummary(&orderbook.Base{
|
||||
m.PrintOrderbookSummary(&orderbook.Book{
|
||||
Pair: currency.NewPair(currency.AUD, currency.USD),
|
||||
}, "REST", errors.New("test"))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user