File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -2,15 +2,15 @@ namespace ldk_node {
2
2
};
3
3
4
4
dictionary Config {
5
- string storage_dir_path;
6
- Network network;
7
- NetAddress? listening_address;
8
- u32 default_cltv_expiry_delta;
9
- u64 onchain_wallet_sync_interval_secs;
10
- u64 wallet_sync_interval_secs;
11
- u64 fee_rate_cache_update_interval_secs;
12
- LogLevel log_level;
13
- sequence<PublicKey> trusted_peers_0conf;
5
+ string storage_dir_path = "/tmp/ldk_node/" ;
6
+ Network network = "Bitcoin" ;
7
+ NetAddress? listening_address = null ;
8
+ u32 default_cltv_expiry_delta = 144 ;
9
+ u64 onchain_wallet_sync_interval_secs = 80 ;
10
+ u64 wallet_sync_interval_secs = 30 ;
11
+ u64 fee_rate_cache_update_interval_secs = 600 ;
12
+ LogLevel log_level = "Debug" ;
13
+ sequence<PublicKey> trusted_peers_0conf = [] ;
14
14
};
15
15
16
16
interface Builder {
You can’t perform that action at this time.
0 commit comments