MCPcopy Create free account
hub / github.com/ElementsProject/lightning / is_known_opt_cb_arg

Function is_known_opt_cb_arg

lightningd/options.c:1911–1938  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1909}
1910
1911bool is_known_opt_cb_arg(char *(*cb_arg)(const char *, void *))
1912{
1913 return cb_arg == (void *)opt_set_talstr
1914 || cb_arg == (void *)opt_add_proxy_addr
1915 || cb_arg == (void *)opt_force_feerates
1916 || cb_arg == (void *)opt_add_plugin
1917 || cb_arg == (void *)opt_add_plugin_dir
1918 || cb_arg == (void *)opt_important_plugin
1919 || cb_arg == (void *)opt_disable_plugin
1920 || cb_arg == (void *)opt_add_addr
1921 || cb_arg == (void *)opt_add_bind_addr
1922 || cb_arg == (void *)opt_add_announce_addr
1923 || cb_arg == (void *)opt_subdaemon
1924 || cb_arg == (void *)opt_set_db_upgrade
1925 || cb_arg == (void *)arg_log_to_file
1926 || cb_arg == (void *)opt_add_accept_htlc_tlv
1927 || cb_arg == (void *)opt_set_hsm_secret
1928 || cb_arg == (void *)opt_subd_dev_disconnect
1929 || cb_arg == (void *)opt_set_crash_timeout
1930 || cb_arg == (void *)opt_add_api_beg
1931 || cb_arg == (void *)opt_add_node_id
1932 || cb_arg == (void *)opt_force_featureset
1933 || cb_arg == (void *)opt_force_privkey
1934 || cb_arg == (void *)opt_force_bip32_seed
1935 || cb_arg == (void *)opt_force_channel_secrets
1936 || cb_arg == (void *)opt_force_tmp_channel_id
1937 || cb_arg == (void *)opt_set_hsm_passphrase;
1938}

Callers 1

get_opt_valFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected