diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2013-03-19 14:08:21 -0400 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2013-03-19 15:16:30 -0400 |
commit | e5f163a041d5a45ea72448e11cfc30abb16f10b6 (patch) | |
tree | 9cf3a9a396bac00f28466421393deb19db8ab372 /src/alert.h | |
parent | 1472308d679fe7ed165c203070335fd58024d4da (diff) |
-alertnotify=<cmd>
Runs a shell command when an AppliesToMe() alert is received.
%s in the <cmd> string is replaced with the alert.strStatusBar
message.
Diffstat (limited to 'src/alert.h')
-rw-r--r-- | src/alert.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alert.h b/src/alert.h index 7949c76972..25e140f573 100644 --- a/src/alert.h +++ b/src/alert.h @@ -91,7 +91,7 @@ public: bool AppliesToMe() const; bool RelayTo(CNode* pnode) const; bool CheckSignature() const; - bool ProcessAlert(); + bool ProcessAlert(bool fThread = true); /* * Get copy of (active) alert object by hash. Returns a null alert if it is not found. |