add missing send method

pull/5370/head
Iuri Matias 6 years ago
parent 87a8ff1117
commit be13f992ae
  1. 4
      remix-simulator/src/provider.js

@ -36,6 +36,10 @@ Provider.prototype.sendAsync = function (payload, callback) {
callback(new Error('unknown method ' + payload.method))
}
Provider.prototype.send = function(payload, callback) {
this.sendAsync(payload, callback || () => {})
}
Provider.prototype.isConnected = function () {
return true
}

Loading…
Cancel
Save