diff options
| author | Wladimir J. van der Laan <[email protected]> | 2020-06-05 14:42:12 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2020-06-09 15:40:02 +0200 |
| commit | 6fe989054f0ad9308e8a25f7123d9e5dd67f1164 (patch) | |
| tree | 4c6df59c0556bdd3ae642586572ae5a99cccaf02 /src/interfaces/node.h | |
| parent | refactor: Put`TryParsePermissionFlags` in anonymous namespace (diff) | |
| download | discoin-6fe989054f0ad9308e8a25f7123d9e5dd67f1164.tar.xz discoin-6fe989054f0ad9308e8a25f7123d9e5dd67f1164.zip | |
refactor: Change Node::initError to take bilingual_str
Make it consistent with `Chain::initError`.
Diffstat (limited to 'src/interfaces/node.h')
| -rw-r--r-- | src/interfaces/node.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/node.h b/src/interfaces/node.h index 0b7fb6736..fad84789c 100644 --- a/src/interfaces/node.h +++ b/src/interfaces/node.h @@ -45,7 +45,7 @@ public: virtual ~Node() {} //! Send init error. - virtual void initError(const std::string& message) = 0; + virtual void initError(const bilingual_str& message) = 0; //! Set command line arguments. virtual bool parseParameters(int argc, const char* const argv[], std::string& error) = 0; |