mirror of
https://github.com/bitromortac/lndmanage.git
synced 2026-08-14 12:43:36 +02:00
15 lines
282 B
Python
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': {
|
|
}
|
|
},
|
|
}
|
|
|