fiat conversion for electrum SPV provider
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -58,5 +58,15 @@ func (p *Provider) GetBalances() ([]int, []string, error) {
|
||||
|
||||
wg.Wait()
|
||||
|
||||
return nil, nil, nil
|
||||
cad, err := convertBTCToCAD(totalSats, p.coinGeckoApiKey)
|
||||
if err != nil {
|
||||
return nil, nil, fmt.Errorf("failed to convert sats to CAD: %v", err)
|
||||
}
|
||||
|
||||
balances := make([]int, 0)
|
||||
accounts := make([]string, 0)
|
||||
balances = append(balances, int(cad))
|
||||
accounts = append(accounts, p.ynabAccountID)
|
||||
|
||||
return balances, accounts, nil
|
||||
}
|
||||
|
Reference in New Issue
Block a user