From 4e97c105c47d8f6d40bebaf3648c6549ff059f2b Mon Sep 17 00:00:00 2001 From: Igor Gassmann Date: Tue, 2 Jan 2018 09:07:28 -0300 Subject: [PATCH] Fix cannot send tip, transaction failed (#917) --- src/renderer/redux/actions/wallet.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/redux/actions/wallet.js b/src/renderer/redux/actions/wallet.js index 9976c98ff..df2faeb8d 100644 --- a/src/renderer/redux/actions/wallet.js +++ b/src/renderer/redux/actions/wallet.js @@ -200,7 +200,7 @@ export function doSendSupport(amount, claimId, uri) { }; Lbry.wallet_send({ - claimId, + claim_id: claimId, amount, }).then(successCallback, errorCallback); };