diff --git a/js/src/modals/SMSVerification/SendRequest/sendRequest.js b/js/src/modals/SMSVerification/SendRequest/sendRequest.js
index dd1212e0d..482eac679 100644
--- a/js/src/modals/SMSVerification/SendRequest/sendRequest.js
+++ b/js/src/modals/SMSVerification/SendRequest/sendRequest.js
@@ -15,115 +15,44 @@
// along with Parity. If not, see
{ this.state.error }
); - } - - if (step === 'pending') { + if (step === POSTING_REQUEST) { return (A verification request will be sent to the contract. Please authorize this using the Parity Signer.
); } - if (step === 'posted') { + if (step === POSTED_REQUEST) { return (Please keep this window open.
-Requesting an SMS from the Parity server.
); } return null; } - - send = () => { - const { api } = this.context; - const { account, contract, onData, onError, onSuccess, nextStep } = this.props; - const { fee, number, hasRequested } = this.props.data; - - const request = contract.functions.find((fn) => fn.name === 'request'); - const options = { from: account, value: fee.toString() }; - - let chain = Promise.resolve(); - if (!hasRequested) { - chain = request.estimateGas(options, []) - .then((gas) => { - options.gas = gas.mul(1.2).toFixed(0); - // TODO: show message - this.setState({ step: 'pending' }); - return request.postTransaction(options, []); - }) - .then((handle) => { - // TODO: The "request rejected" error doesn't have any property to - // distinguish it from other errors, so we can't give a meaningful error here. - return api.pollMethod('parity_checkRequest', handle); - }) - .then((txHash) => { - onData({ txHash: txHash }); - this.setState({ step: 'posted' }); - return waitForConfirmations(api, txHash, 1); - }); - } - - chain - .then(() => { - this.setState({ step: 'mined' }); - return postToVerificationServer({ number, address: account }); - }) - .then(() => { - this.setState({ step: 'sms-sent' }); - onSuccess(); - nextStep(); - }) - .catch((err) => { - console.error('failed to request sms verification', err); - onError(err); - this.setState({ - step: 'error', - error: 'Failed to request a confirmation SMS: ' + err.message - }); - // TODO: show message in SnackBar - }); - } }