diff --git a/src/containers/Home/TokenDetails/index.js b/src/containers/Home/TokenDetails/index.js
index b5fed0c..3a8e283 100644
--- a/src/containers/Home/TokenDetails/index.js
+++ b/src/containers/Home/TokenDetails/index.js
@@ -90,7 +90,7 @@ const TokenDetails = (props) => {
{rewards > 0 ? rewards.toFixed(4) : 0}
- {/* */}
+
{/* /!* *!/ */}
{/* /!* *!/ */}
diff --git a/src/helper.js b/src/helper.js
index a165515..0857ea0 100644
--- a/src/helper.js
+++ b/src/helper.js
@@ -625,6 +625,7 @@ export const claimTransaction = (Tx, txs, type, cb) => {
Tx.map((newTx) => {
(async () => {
const bondMsgValue = new ClaimRewardsMsgValue({
+ source: newTx.source,
validator: newTx.validator,
});
const encoded = await tx.buildClaimRewards(wrapperTxValue, bondMsgValue);
@@ -633,7 +634,7 @@ export const claimTransaction = (Tx, txs, type, cb) => {
});
} else {
const bondMsgValue = new ClaimRewardsMsgValue({
- // source: Tx.source,
+ source: Tx.source,
validator: Tx.validator,
});
const encoded = await tx.buildClaimRewards(wrapperTxValue, bondMsgValue);