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

Commit

Permalink
fix: add missing fork address back into cli output (#764)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmurdoch authored Jun 24, 2020
1 parent 1b669ee commit bf4275b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ var options = {
keepAliveTimeout: argv.keepAliveTimeout
}

var fork_address;
var server = ganache.server(options);

console.log(detailedVersion);
Expand Down Expand Up @@ -222,7 +221,7 @@ function startGanache(err, result) {
console.log("");
console.log("Forked Chain");
console.log("==================");
console.log("Location: " + fork_address);
console.log("Location: " + state.blockchain.options.fork);
console.log("Block: " + to.number(state.blockchain.forkBlockNumber));
console.log("Network ID: " + state.net_version);
console.log("Time: " + (state.blockchain.startTime || new Date()).toString());
Expand Down

0 comments on commit bf4275b

Please sign in to comment.