File tree Expand file tree Collapse file tree 4 files changed +3
-7
lines changed Expand file tree Collapse file tree 4 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ Warnet creates a Bitcoin network using a network topology from a [graphml](https
55Before any scenarios or RPC commands can be executed, a Warnet network must be started from a graph.
66See [ warcli.md] ( warcli.md ) for more details on these commands.
77
8- To start a network called ` "warnet" ` from the [ default graph file] ( ../src/ graphs/default.graphml ) :
8+ To start a network called ` "warnet" ` from the [ default graph file] ( ../graphs/default.graphml ) :
99```
1010warcli network start
1111```
File renamed without changes.
Original file line number Diff line number Diff line change 1+ import os
12import base64 # noqa: I001
23from pathlib import Path
34
89from rich .table import Table
910from .rpc import rpc_call # noqa: I001
1011
11- from warnet .graphs import GRAPHS # noqa: I001
12-
13- DEFAULT_GRAPH_FILE = GRAPHS / "default.graphml"
12+ DEFAULT_GRAPH_FILE = Path (os .path .dirname (os .path .abspath (__file__ ))) / ".." / ".." / ".." / "graphs" / "default.graphml"
1413
1514
1615def print_repr (wn : dict ) -> None :
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments