KomodoPlatform / komodo-defi-framework

This is the official Komodo DeFi Framework repository
https://komodoplatform.com/en/docs/komodo-defi-framework/
106 stars 94 forks source link

fix(hd-wallet): use `CoinBalanceMap` for UTXO and QTUM #2259

Closed shamardy closed 2 weeks ago

shamardy commented 3 weeks ago

This is to return the same type/json across all coins for GUI since EVM uses CoinBalanceMap, the balance for UTXO will show as

"balance":{
   "KMD":{
      "spendable":"0",
      "unspendable":"0"
   }
}

instead of

"balance":{
   "spendable":"0",
   "unspendable":"0"
}

To Test: Already tested by @CharlVS

shamardy commented 3 weeks ago

@CharlVS requested your review on this, if this works as expected in GUI please approve it :)