mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-21 03:21:08 +03:00
Fix capabilities (#1944)
* we cannot safely update nodes to use capabilities bits = 15 ... * rustfmt
This commit is contained in:
parent
949f75c77c
commit
e25a3b9d72
1 changed files with 3 additions and 1 deletions
|
@ -132,7 +132,9 @@ impl Default for P2PConfig {
|
|||
P2PConfig {
|
||||
host: ipaddr,
|
||||
port: 13414,
|
||||
capabilities: Capabilities::FULL_NODE,
|
||||
capabilities: Capabilities::HEADER_HIST
|
||||
| Capabilities::TXHASHSET_HIST
|
||||
| Capabilities::PEER_LIST,
|
||||
seeding_type: Seeding::default(),
|
||||
seeds: None,
|
||||
peers_allow: None,
|
||||
|
|
Loading…
Reference in a new issue