Skip to content

Commit

Permalink
itest: disable grpc plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
JssDWt committed Dec 6, 2024
1 parent 61a6ca9 commit c8b9a79
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions itest/tests/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,13 @@ def connect_nodes(sender, trampoline, recipient):
def setup(
node_factory, hodl_plugin=False, may_reconnect=False, connect_nodes=connect_nodes
):
sender_opts = {}
recipient_opts = {}
trampoline_opts = {"plugin": plugin_path, "trampoline-mpp-timeout": "15"}
sender_opts = {"disable-plugin": "cln-grpc"}
recipient_opts = {"disable-plugin": "cln-grpc"}
trampoline_opts = {
"plugin": plugin_path,
"trampoline-mpp-timeout": "15",
"disable-plugin": "cln-grpc",
}
if hodl_plugin:
recipient_opts["plugin"] = hodl_plugin_path

Expand Down

0 comments on commit c8b9a79

Please sign in to comment.