From fa91f3cea5f5e5b495fecad54723ea8b84be5502 Mon Sep 17 00:00:00 2001 From: liamcardenas Date: Thu, 8 Mar 2018 23:10:37 -0800 Subject: [PATCH] Fix abandon claim issue --- src/renderer/redux/actions/content.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/redux/actions/content.js b/src/renderer/redux/actions/content.js index 683aa3b32..d5671bba4 100644 --- a/src/renderer/redux/actions/content.js +++ b/src/renderer/redux/actions/content.js @@ -521,7 +521,7 @@ export function doAbandonClaim(txid, nout) { claimId, }, }); - dispatch(doResolveUri(buildURI({ claimName, claimId }))); + dispatch(doResolveUri(buildURI({ claimName: name, claimId }))); dispatch(doFetchClaimListMine()); } else { dispatch(doOpenModal(MODALS.TRANSACTION_FAILED));