mirror of https://github.com/embarklabs/embark.git
add missing semi-colon
This commit is contained in:
parent
fe3e4690f6
commit
c569dc9d21
|
@ -276,7 +276,7 @@ class ContractDeployer {
|
||||||
contract.error = error.message;
|
contract.error = error.message;
|
||||||
self.events.emit("deploy:contract:error", contract);
|
self.events.emit("deploy:contract:error", contract);
|
||||||
if (error.message && error.message.indexOf('replacement transaction underpriced')) {
|
if (error.message && error.message.indexOf('replacement transaction underpriced')) {
|
||||||
self.logger.warn("replacement transaction underpriced: This warning typically means a transaction exactly like this one is still pending on the blockchain")
|
self.logger.warn("replacement transaction underpriced: This warning typically means a transaction exactly like this one is still pending on the blockchain");
|
||||||
}
|
}
|
||||||
return next(new Error("error deploying =" + contract.className + "= due to error: " + error.message));
|
return next(new Error("error deploying =" + contract.className + "= due to error: " + error.message));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue