1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-03-09 15:40:10 +00:00

updated pow-miner + small bugfix

This commit is contained in:
ton 2020-07-10 13:46:16 +03:00 committed by tolya-yanot
parent b84e3e9735
commit b36118dd27
16 changed files with 344 additions and 25 deletions

View file

@ -66,8 +66,8 @@ class TerminalIOImpl : public TerminalIO, td::ObserverBase {
void on_net() {
loop();
}
TerminalIOImpl(std::string prompt, bool use_readline, std::unique_ptr<Callback> callback)
: prompt_(prompt), use_readline_(use_readline), callback_(std::move(callback)) {
TerminalIOImpl(std::string prompt, bool use_readline, bool no_input, std::unique_ptr<Callback> callback)
: prompt_(prompt), use_readline_(use_readline), no_input_(no_input), callback_(std::move(callback)) {
}
int stdin_getc();
@ -83,6 +83,7 @@ class TerminalIOImpl : public TerminalIO, td::ObserverBase {
std::string prompt_;
bool use_readline_ = false;
bool no_input_ = false;
std::unique_ptr<Callback> callback_;
std::mutex out_mutex_;