We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e21307e commit aea290fCopy full SHA for aea290f
src/parser.cpp
@@ -916,6 +916,16 @@ options_metadata parser::load_settings() THROWS
916
value<network::config::endpoints>(&configured.server.bitcoind.hosts),
917
"The host name (http verification), multiple allowed, defaults to empty (disabled)."
918
)
919
+ (
920
+ "bitcoind.origin",
921
+ value<network::config::endpoints>(&configured.server.bitcoind.origins),
922
+ "The allowed origin (see CORS), multiple allowed, defaults to empty (disabled)."
923
+ )
924
925
+ "bitcoind.allow_opaque_origin",
926
+ value<bool>(&configured.server.bitcoind.allow_opaque_origin),
927
+ "Allow requests from opaue origin (see CORS), multiple allowed, defaults to false."
928
929
930
/* [electrum] */
931
////(
0 commit comments