Skip to content
This repository has been archived by the owner on Jan 25, 2022. It is now read-only.

Commit

Permalink
Fix Promise resolve reject params
Browse files Browse the repository at this point in the history
  • Loading branch information
daniyarchambylov committed Apr 10, 2019
1 parent 888541e commit 528bfef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compat/truffle-compile/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ compile.with_dependencies = async function(options, callback, compileAll) {
})
isSolcLoaded = true;
}
await new Promise((reject, resolve) => {
await new Promise((resolve, reject) => {
Profiler.imported_sources(
config.with({
paths: [sourcePath],
Expand Down

0 comments on commit 528bfef

Please sign in to comment.