@carrot-protocol/boost-http-client 0.2.15-group-refactor1-dev-5488543 → 0.2.15-group-refactor1-dev-94d77e6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +0 -1
- package/package.json +1 -1
- package/src/index.ts +0 -1
package/dist/index.js
CHANGED
|
@@ -107,7 +107,6 @@ class Client {
|
|
|
107
107
|
async getUser(groups, user, getClendAccountSummary) {
|
|
108
108
|
const body = await handleApiCall(() => this.http.get(`/user?user=${user.toString()}&groups=${groups.map((g) => g.toString()).join(",")}&getClendAccountSummary=${getClendAccountSummary}`));
|
|
109
109
|
const jsonRawResponse = JSON.parse(body);
|
|
110
|
-
console.log(JSON.stringify(jsonRawResponse, null, 2));
|
|
111
110
|
// parse balances
|
|
112
111
|
const walletBalances = [];
|
|
113
112
|
for (const b of jsonRawResponse.wallet.balances) {
|
package/package.json
CHANGED