From ef561a11e3096aafd96ffb4fbc682dd0a1a93508 Mon Sep 17 00:00:00 2001 From: Akinwale Ariwodola Date: Wed, 4 Apr 2018 15:19:19 +0100 Subject: [PATCH] updated build --- src/redux/actions/claims.js | 28 ++++++++------ src/redux/actions/wallet.js | 74 +++++++++++++++++++++---------------- 2 files changed, 58 insertions(+), 44 deletions(-) diff --git a/src/redux/actions/claims.js b/src/redux/actions/claims.js index b4c2e69..8fa939b 100644 --- a/src/redux/actions/claims.js +++ b/src/redux/actions/claims.js @@ -84,12 +84,14 @@ export function doAbandonClaim(txid, nout) { }); const errorCallback = () => { - dispatch(doNotify({ - title: 'Transaction failed', - message: 'Transaction failed', - type: 'error', - displayType: ['modal', 'toast'] - })); + dispatch( + doNotify({ + title: 'Transaction failed', + message: 'Transaction failed', + type: 'error', + displayType: ['modal', 'toast'], + }) + ); }; const successCallback = results => { @@ -103,12 +105,14 @@ export function doAbandonClaim(txid, nout) { dispatch(doResolveUri(buildURI({ name, claimId }))); dispatch(doFetchClaimListMine()); } else { - dispatch(doNotify({ - title: 'Transaction failed', - message: 'Transaction failed', - type: 'error', - displayType: ['modal', 'toast'] - })); + dispatch( + doNotify({ + title: 'Transaction failed', + message: 'Transaction failed', + type: 'error', + displayType: ['modal', 'toast'], + }) + ); } }; diff --git a/src/redux/actions/wallet.js b/src/redux/actions/wallet.js index fe1c285..728ba2d 100644 --- a/src/redux/actions/wallet.js +++ b/src/redux/actions/wallet.js @@ -98,12 +98,14 @@ export function doSendDraftTransaction() { const amount = selectDraftTransactionAmount(state); if (balance - amount <= 0) { - dispatch(doNotify({ - title: 'Insufficient credits', - message: 'Insufficient credits', - type: 'error', - displayType: ['modal', 'toast'] - })); + dispatch( + doNotify({ + title: 'Insufficient credits', + message: 'Insufficient credits', + type: 'error', + displayType: ['modal', 'toast'], + }) + ); return; } @@ -116,25 +118,29 @@ export function doSendDraftTransaction() { dispatch({ type: ACTIONS.SEND_TRANSACTION_COMPLETED, }); - dispatch(doNotify({ - title: 'Credits sent', - message: `You sent ${amount} LBC`, - type: 'error', - displayType: ['snackbar', 'toast'], - linkText: 'History', - linkTarget: '/wallet' - })); + dispatch( + doNotify({ + title: 'Credits sent', + message: `You sent ${amount} LBC`, + type: 'error', + displayType: ['snackbar', 'toast'], + linkText: 'History', + linkTarget: '/wallet', + }) + ); } else { dispatch({ type: ACTIONS.SEND_TRANSACTION_FAILED, data: { error: results }, }); - dispatch(doNotify({ - title: 'Transaction failed', - message: 'Transaction failed', - type: 'error', - displayType: ['modal', 'toast'] - })); + dispatch( + doNotify({ + title: 'Transaction failed', + message: 'Transaction failed', + type: 'error', + displayType: ['modal', 'toast'], + }) + ); } }; @@ -143,12 +149,14 @@ export function doSendDraftTransaction() { type: ACTIONS.SEND_TRANSACTION_FAILED, data: { error: error.message }, }); - dispatch(doNotify({ - title: 'Transaction failed', - message: 'Transaction failed', - type: 'error', - displayType: ['modal', 'toast'] - })); + dispatch( + doNotify({ + title: 'Transaction failed', + message: 'Transaction failed', + type: 'error', + displayType: ['modal', 'toast'], + }) + ); }; Lbry.wallet_send({ @@ -178,12 +186,14 @@ export function doSendSupport(amount, claimId, uri, successCallback, errorCallba const balance = selectBalance(state); if (balance - amount <= 0) { - dispatch(doNotify({ - title: 'Insufficient credits', - message: 'Insufficient credits', - type: 'error', - displayType: ['modal', 'toast'] - })); + dispatch( + doNotify({ + title: 'Insufficient credits', + message: 'Insufficient credits', + type: 'error', + displayType: ['modal', 'toast'], + }) + ); return; }