Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/2.3.9' of https://github.com/LiskHQ/lisk-sdk int…
Browse files Browse the repository at this point in the history
…o v2
  • Loading branch information
shuse2 committed Aug 3, 2021
2 parents 60d4c7d + fa5d8e5 commit 344a680
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions framework/src/modules/chain/transport/transport.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,15 +155,15 @@ class Transport {
}

if (block.totalAmount) {
block.totalAmount = block.totalAmount.toNumber();
block.totalAmount = block.totalAmount.toString();
}

if (block.totalFee) {
block.totalFee = block.totalFee.toNumber();
block.totalFee = block.totalFee.toString();
}

if (block.reward) {
block.reward = block.reward.toNumber();
block.reward = block.reward.toString();
}

if (block.transactions) {
Expand Down

0 comments on commit 344a680

Please sign in to comment.