Merge branch '0.39.0_changes'

This commit is contained in:
Niko Storni 2019-08-26 23:15:58 +02:00
commit 38861421f8

View file

@ -220,7 +220,12 @@ type AccountListResponse struct {
LBCRegtest []Account `json:"lbc_regtest"` LBCRegtest []Account `json:"lbc_regtest"`
} }
type AccountBalanceResponse string type AccountBalanceResponse struct {
Available decimal.Decimal `json:"available"`
Reserved decimal.Decimal `json:"reserved"`
ReservedSubtotals *decimal.Decimal `json:"reserved_subtotals"`
Total decimal.Decimal `json:"total"`
}
type AccountCreateResponse struct { type AccountCreateResponse struct {
ID string `json:"id"` ID string `json:"id"`