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 2
2
3
3
## [ 2.12.6] - 2023-10-03
4
4
- Fix for a rare condition resulting in "invalid derivation path" error when trying to send funds.
5
+ - UPNP support. It can be disabled in Settings -> Advanced -> Service Configuration.
5
6
6
7
## [ 2.12.5] - 2023-10-02
7
8
Big localization update, many thanks to our translators!
8
- - UPNP support
9
+ - UPNP support (initial)
9
10
10
11
## [ 2.12.4] - 2023-09-30
11
12
Updated Kaspa node to v0.12.14.
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ module.exports = class Kaspad extends Daemon {
16
16
this . data = [ ] ;
17
17
18
18
this . upnpClient = new natUpnp . Client ( ) ;
19
- this . upnpTtl = 600 ; // 10 minutes
19
+ this . upnpTtl = 7200 ; // 2 hours
20
20
this . ready = new Semaphore ( ) ;
21
21
}
22
22
@@ -54,7 +54,7 @@ module.exports = class Kaspad extends Daemon {
54
54
console . info ( `External IP: ${ externalip } ` ) ;
55
55
args [ 'externalip' ] = externalip ;
56
56
if ( ! args [ 'maxinpeers' ] ) {
57
- args [ 'maxinpeers' ] = 8 ;
57
+ args [ 'maxinpeers' ] = 16 ;
58
58
}
59
59
}
60
60
You can’t perform that action at this time.
0 commit comments