lndmanage/test/graph_definitions/empty_graph.py
2020-03-31 08:51:14 +02:00

15 lines
282 B
Python

"""
Implements a lightning network topology with only one node and no channels.
"""
nodes = {
'A': {
'grpc_port': 11009,
'rest_port': 8080,
'port': 9735,
'base_fee_msat': 1,
'fee_rate': 0.000001,
'channels': {
}
},
}