diff --git a/lib/routes.js b/lib/routes.js index 3868f6ee..8bb95189 100644 --- a/lib/routes.js +++ b/lib/routes.js @@ -155,15 +155,6 @@ function postTx (req, res, next) { .catch(next) } -function createWallet (req, res, next) { - const pi = plugins(req.settings, req.deviceId) - pi.newAddress(req.tx) - .then(addr => { - respond(req, res, addr) - }) - .catch(next) -} - function stateChange (req, res, next) { helpers.stateChange(req.deviceId, req.deviceTime, req.body) .then(() => respond(req, res))