Skip to content

Commit b4580e3

Browse files
committed
[DDW-614] Fix unspent rewards values in csv export
1 parent 88fcb09 commit b4580e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/renderer/app/components/staking/rewards/StakingRewards.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ class StakingRewards extends Component<Props, State> {
157157
const rewardTotal = get(reward, REWARD_FIELDS.REWARD_TOTAL).toFormat(
158158
DECIMAL_PLACES_IN_ADA
159159
);
160-
const rewardUnspent = get(reward, REWARD_FIELDS.REWARD_TOTAL).toFormat(
160+
const rewardUnspent = get(reward, REWARD_FIELDS.REWARD_UNSPENT).toFormat(
161161
DECIMAL_PLACES_IN_ADA
162162
);
163163
const rewardsAddress = get(reward, REWARD_FIELDS.REWARDS_ADDRESS);

0 commit comments

Comments
 (0)