Add Bitstamp dynamic currency updater

This commit is contained in:
Adrian Gallagher
2018-03-01 16:05:28 +11:00
parent 7be56f1f8c
commit 046b4dc348
4 changed files with 48 additions and 0 deletions

View File

@@ -110,6 +110,15 @@ func TestGetOrderbook(t *testing.T) {
}
}
func TestGetTradingPairs(t *testing.T) {
t.Parallel()
b := Bitstamp{}
_, err := b.GetTradingPairs()
if err != nil {
t.Error("Test Failed - GetTradingPairs() error", err)
}
}
func TestGetTransactions(t *testing.T) {
t.Parallel()
b := Bitstamp{}