Remove unused async from function

Throws a linter warning, now that it's not an RSVP promise anymore.
This commit is contained in:
2020-05-31 12:46:51 +02:00
parent 302c3315a3
commit c64a503546
+1 -1
View File
@@ -94,7 +94,7 @@ export default Service.extend({
getEthProvider () {
let ethProvider;
return new Promise(async (resolve) => {
return new Promise(resolve => {
function instantiateWithoutAccount () {
console.debug('[kredits] Creating new instance from npm module class');
console.debug(`[kredits] providerURL: ${config.web3ProviderUrl}`);