File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ mode = "krypton"
10
10
peer_host = " 127.0.0.1"
11
11
username = " <Bitcoin RPC username>"
12
12
password = " <Bitcoin RPC password>"
13
- rpc_port = < Bitcoin RPC port>
14
- peer_port = < Bitcoin P2P port>
13
+ rpc_port = 12345 # Bitcoin RPC port
14
+ peer_port = 6789 # Bitcoin P2P port
15
15
pox_prepare_length = 100
16
16
pox_reward_length = 900
17
17
# Maximum amount (in sats) of "burn commitment" to broadcast for the next block's leader election
Original file line number Diff line number Diff line change @@ -3033,8 +3033,9 @@ mod tests {
3033
3033
if path. is_file ( ) {
3034
3034
let file_name = path. file_name ( ) . unwrap ( ) . to_str ( ) . unwrap ( ) ;
3035
3035
if file_name. ends_with ( ".toml" ) {
3036
+ debug ! ( "Parsing config file: {file_name}" ) ;
3036
3037
let _config = ConfigFile :: from_path ( path. to_str ( ) . unwrap ( ) ) . unwrap ( ) ;
3037
- debug ! ( "Parsed config file: {}" , file_name ) ;
3038
+ debug ! ( "Parsed config file: {file_name}" ) ;
3038
3039
}
3039
3040
}
3040
3041
}
You can’t perform that action at this time.
0 commit comments