Skip to content

Commit

Permalink
Merge pull request #2349 from dusk-network/feature-2348
Browse files Browse the repository at this point in the history
  • Loading branch information
nortonandreev authored Sep 11, 2024
2 parents ddf8f00 + dcbec53 commit 955d6b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions explorer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- Fix Transactions Fee is not properly computed [#2348]

## [0.2.0] - 2024-08-26

### Added
Expand Down Expand Up @@ -58,6 +60,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#2061]: https://github.com/dusk-network/rusk/issues/2061
[#2159]: https://github.com/dusk-network/rusk/issues/2159
[#2220]: https://github.com/dusk-network/rusk/issues/2220
[#2348]: https://github.com/dusk-network/rusk/issues/2348

<!-- VERSIONS -->

Expand Down
2 changes: 1 addition & 1 deletion explorer/src/lib/chain-info/transformTransaction.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const transformTransaction = (tx) => ({
blockheight: tx.blockHeight,
contract: tx.tx.callData ? capitalize(tx.tx.callData.fnName) : "Transfer",
date: unixTsToDate(tx.blockTimestamp),
feepaid: tx.gasSpent,
feepaid: tx.gasSpent * tx.tx.gasPrice,
gaslimit: tx.tx.gasLimit,
gasprice: tx.tx.gasPrice,
gasspent: tx.gasSpent,
Expand Down

0 comments on commit 955d6b9

Please sign in to comment.