poloniex: websocket update (#659)

* poloniex: websocket update with debug output and currency tracking system

* linter: fix issues

* nits: Addr

* poloniex: govet fix

* nits: addr

* Bittrex: Fix fee test
This commit is contained in:
Ryan O'Hara-Reid
2021-04-27 12:05:10 +10:00
committed by GitHub
parent d106d091e6
commit ca87ddf825
12 changed files with 4123 additions and 435 deletions

View File

@@ -47,3 +47,12 @@ type Balance struct {
TotalValue float64
Hold float64
}
// Change defines incoming balance change on currency holdings
type Change struct {
Exchange string
Currency currency.Code
Asset asset.Item
Amount float64
Account string
}