rpcserver/exchanges: Add additional param checks plus other minor bugfixes/improvements (#652)

* deleting the unwanted file created during testing + adding more verbose errors for cli

* wip

* checking params throughout wip

* improving errors

* wip

* thrasher patch

* better err name

* whip

* testing and fixing errors WIP

* upgrades and better errors

* broken test

* wip

* adding some tests

* using tempDir

* mini improvement

* little changes

* better time check

* fixing error

* more glorious changes

* end of day wip

* shazzy changes

* checking error

* appveyor

* last changes:
This commit is contained in:
Adam
2021-03-30 13:40:01 +11:00
committed by GitHub
parent 2855e68bac
commit 08f1b5d5d3
13 changed files with 457 additions and 283 deletions

View File

@@ -37,13 +37,13 @@ func CreateTestBot(t *testing.T) *Engine {
}
if bot.GetExchangeByName(testExchange) == nil {
err := bot.LoadExchange(testExchange, false, nil)
err = bot.LoadExchange(testExchange, false, nil)
if err != nil {
t.Fatalf("SetupTest: Failed to load exchange: %s", err)
}
}
if bot.GetExchangeByName(fakePassExchange) == nil {
err := addPassingFakeExchange(testExchange, bot)
err = addPassingFakeExchange(testExchange, bot)
if err != nil {
t.Fatalf("SetupTest: Failed to load exchange: %s", err)
}