From 86f7f1116d6fec37a3eb8fbcee3a2b0710b84571 Mon Sep 17 00:00:00 2001 From: Charmaine Ndolo Date: Fri, 25 Jul 2025 13:54:11 -0400 Subject: [PATCH 1/2] fix path to venv --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a99759492..787c28f44 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Monitor and analyze the emergent behaviors of Bitcoin networks. ```sh python3 -m venv .venv -source ./venv/bin/activate +source .venv/bin/activate ``` ### 2. Install Warnet @@ -97,4 +97,4 @@ defaults for all nodes in the network by editing `node-defaults.yaml`. Once your network is running use Warnet [CLI](docs/warnet.md) commands to interact with it. -![warnet-art](https://raw.githubusercontent.com/bitcoin-dev-project/warnet/main/docs/machines.webp) \ No newline at end of file +![warnet-art](https://raw.githubusercontent.com/bitcoin-dev-project/warnet/main/docs/machines.webp) From 039c788d40ff0dc9e4dec43ace967aef480c8f1a Mon Sep 17 00:00:00 2001 From: Charmaine Ndolo Date: Fri, 25 Jul 2025 14:46:57 -0400 Subject: [PATCH 2/2] use generic path in simln config and spelling --- resources/plugins/simln/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/plugins/simln/README.md b/resources/plugins/simln/README.md index a627813af..2125306d2 100644 --- a/resources/plugins/simln/README.md +++ b/resources/plugins/simln/README.md @@ -102,14 +102,14 @@ nodes: plugins: postDeploy: simln: - entrypoint: "../../plugins/simln" # This is the path to the simln plugin folder (relative to the network.yaml file). + entrypoint: "/path/to/plugins/simln" # This is the path to the simln plugin folder (relative to the network.yaml file). activity: '[{"source": "tank-0003-ln", "destination": "tank-0005-ln", "interval_secs": 1, "amount_msat": 2000}]' ```` -## Generating your own SimLn image +## Generating your own SimLN image The SimLN plugin fetches a SimLN docker image from dockerhub. You can generate your own docker image if you choose: 1. Clone SimLN: `git clone git@github.com:bitcoin-dev-project/sim-ln.git`