zano_web3 6.8.0 → 6.9.0
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/package.json +1 -1
- package/server/src/server.ts +4 -0
package/package.json
CHANGED
package/server/src/server.ts
CHANGED
|
@@ -198,6 +198,10 @@ class ServerWallet {
|
|
|
198
198
|
amount: new Big(asset.unlocked)
|
|
199
199
|
.div(new Big(10).pow(asset.asset_info.decimal_point))
|
|
200
200
|
.toString(),
|
|
201
|
+
awaiting_in: new Big(asset.awaiting_in),
|
|
202
|
+
awaiting_out: new Big(asset.awaiting_out),
|
|
203
|
+
total: new Big(asset.total),
|
|
204
|
+
unlocked: new Big(asset.unlocked),
|
|
201
205
|
}));
|
|
202
206
|
|
|
203
207
|
return balances.sort((a, b) => {
|