diff --git a/react/src/components/dashboard/sendCoin/sendCoin.render.js b/react/src/components/dashboard/sendCoin/sendCoin.render.js index 010e98e..84e5d40 100644 --- a/react/src/components/dashboard/sendCoin/sendCoin.render.js +++ b/react/src/components/dashboard/sendCoin/sendCoin.render.js @@ -353,7 +353,9 @@ export const SendRender = function() { this.state.lastSendToResponse.raw.txid &&
{ this.state.lastSendToResponse.raw.txid.replace(/\[.*\]/, '') }
} - { this.state.lastSendToResponse.raw.txid.indexOf('bad-txns-inputs-spent') > -1 && + { this.state.lastSendToResponse.raw && + this.state.lastSendToResponse.raw.txid && + this.state.lastSendToResponse.raw.txid.indexOf('bad-txns-inputs-spent') > -1 &&
{ translate('SEND.BAD_TXN_SPENT_ERR1') }