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 @@ -3,15 +3,15 @@ namespace ldk_node {
3
3
};
4
4
5
5
dictionary Config {
6
- string storage_dir_path;
7
- Network network;
8
- NetAddress? listening_address;
9
- u32 default_cltv_expiry_delta;
10
- u64 onchain_wallet_sync_interval_secs;
11
- u64 wallet_sync_interval_secs;
12
- u64 fee_rate_cache_update_interval_secs;
13
- LogLevel log_level;
14
- sequence<PublicKey> trusted_peers_0conf;
6
+ string storage_dir_path = "/tmp/ldk_node/" ;
7
+ Network network = "Bitcoin" ;
8
+ NetAddress? listening_address = null ;
9
+ u32 default_cltv_expiry_delta = 144 ;
10
+ u64 onchain_wallet_sync_interval_secs = 80 ;
11
+ u64 wallet_sync_interval_secs = 30 ;
12
+ u64 fee_rate_cache_update_interval_secs = 600 ;
13
+ LogLevel log_level = "Debug" ;
14
+ sequence<PublicKey> trusted_peers_0conf = [] ;
15
15
};
16
16
17
17
interface Builder {
You can’t perform that action at this time.
0 commit comments