From 035baeff3749cb9fb8f8c7c05937a2fa59bb9216 Mon Sep 17 00:00:00 2001 From: pbca26 Date: Sun, 30 Apr 2017 16:07:46 +0300 Subject: [PATCH] missing send basilisk condition --- react/src/components/dashboard/sendCoin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react/src/components/dashboard/sendCoin.js b/react/src/components/dashboard/sendCoin.js index ef4d56a..4ac7138 100644 --- a/react/src/components/dashboard/sendCoin.js +++ b/react/src/components/dashboard/sendCoin.js @@ -138,7 +138,7 @@ class SendCoin extends React.Component { })); if (step === 2) { - if (!this.state.sendApiType) { + if (!this.state.sendApiType && this.props.ActiveCoin.mode === 'basilisk') { handleBasiliskSend(); } else { Store.dispatch(sendToAddress(this.props.ActiveCoin.coin, this.state));