Only expose wot to rpc if rpc is active

This commit is contained in:
Kevin F 2023-01-16 23:30:50 -06:00
parent ce3a548c70
commit 560a20e90a
1 changed files with 5 additions and 1 deletions

View File

@ -66,7 +66,11 @@ def on_init(api, data=None):
load_identities_from_blocks())
)
plugin_apis['rpc.add_module_to_api'](wot)
# Expose WOT to RPC if the RPC plugin is loaded
try:
plugin_apis['rpc.add_module_to_api'](wot)
except KeyError:
pass
# load active identity, from there load our trust graph
active_identity = config.get('wot.active_identity_name', '')