aboutsummaryrefslogtreecommitdiff
path: root/src/init.h
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2022-04-04 14:38:56 +0200
committerMarcoFalke <falke.marco@gmail.com>2022-04-05 13:29:42 +0200
commitfa0c2aa826282fe40d2ce7becb4eb6d4814447a3 (patch)
treec15b8a6ace737186d030d0ad35506016ae0a6c22 /src/init.h
parent24c6b20c14303831531b19641350516ab401041a (diff)
downloadbitcoin-fa0c2aa826282fe40d2ce7becb4eb6d4814447a3.tar.xz
init: Disable syscall sandbox in the bitcoin-qt process
Diffstat (limited to 'src/init.h')
-rw-r--r--src/init.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.h b/src/init.h
index ddd439f619..2250ae20a0 100644
--- a/src/init.h
+++ b/src/init.h
@@ -41,7 +41,7 @@ bool AppInitBasicSetup(const ArgsManager& args);
* @note This can be done before daemonization. Do not call Shutdown() if this function fails.
* @pre Parameters should be parsed and config file should be read, AppInitBasicSetup should have been called.
*/
-bool AppInitParameterInteraction(const ArgsManager& args);
+bool AppInitParameterInteraction(const ArgsManager& args, bool use_syscall_sandbox = true);
/**
* Initialization sanity checks: ecc init, sanity checks, dir lock.
* @note This can be done before daemonization. Do not call Shutdown() if this function fails.