|
@ -117,6 +117,7 @@ void interactiveHelp() |
|
|
<< " send Execute a given transaction with current secret." << endl |
|
|
<< " send Execute a given transaction with current secret." << endl |
|
|
<< " contract Create a new contract with current secret." << endl |
|
|
<< " contract Create a new contract with current secret." << endl |
|
|
<< " inspect <contract> Dumps a contract to <APPDATA>/<contract>.evm." << endl |
|
|
<< " inspect <contract> Dumps a contract to <APPDATA>/<contract>.evm." << endl |
|
|
|
|
|
<< " reset Resets ncurses windows" << endl |
|
|
<< " exit Exits the application." << endl; |
|
|
<< " exit Exits the application." << endl; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -819,6 +820,15 @@ int main(int argc, char** argv) |
|
|
ofs.close(); |
|
|
ofs.close(); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
else if (cmd == "reset") |
|
|
|
|
|
{ |
|
|
|
|
|
vector<WINDOW*> ws { consolewin, blockswin, pendingwin, peerswin, contractswin, addswin, mainwin }; |
|
|
|
|
|
for (auto &w: ws) |
|
|
|
|
|
{ |
|
|
|
|
|
wclear(w); |
|
|
|
|
|
wrefresh(w); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
else if (cmd == "help") |
|
|
else if (cmd == "help") |
|
|
interactiveHelp(); |
|
|
interactiveHelp(); |
|
|
else if (cmd == "exit") |
|
|
else if (cmd == "exit") |
|
|