@@ -63,8 +63,8 @@ cache_size = 268435456
63
63
options_file = " default.db-options"
64
64
65
65
[network ]
66
- listen_addresses = [" /ip4/0.0.0.0/tcp/8115" ] # {{
67
- # _ => listen_addresses = ["/ip4/0.0.0.0/tcp/{p2p_port}"]
66
+ listen_addresses = [" /ip4/0.0.0.0/tcp/8115" , " /ip4/0.0.0.0/tcp/8115/ws " ] # {{
67
+ # _ => listen_addresses = ["/ip4/0.0.0.0/tcp/{p2p_port}", "/ip4/0.0.0.0/tcp/{p2p_port}/ws" ]
68
68
# }}
69
69
# ## Specify the public and routable network addresses
70
70
# public_addresses = []
@@ -103,7 +103,19 @@ discovery_local_address = false # {{
103
103
bootnode_mode = false
104
104
105
105
# Supported protocols list, only "Sync" and "Identify" are mandatory, others are optional
106
- support_protocols = [" Ping" , " Discovery" , " Identify" , " Feeler" , " DisconnectMessage" , " Sync" , " Relay" , " Time" , " Alert" , " LightClient" , " Filter" ]
106
+ support_protocols = [
107
+ " Ping" ,
108
+ " Discovery" ,
109
+ " Identify" ,
110
+ " Feeler" ,
111
+ " DisconnectMessage" ,
112
+ " Sync" ,
113
+ " Relay" ,
114
+ " Time" ,
115
+ " Alert" ,
116
+ " LightClient" ,
117
+ " Filter" ,
118
+ ]
107
119
108
120
# [network.sync.header_map]
109
121
# memory_limit = "256MB"
@@ -121,7 +133,15 @@ listen_address = "127.0.0.1:8114" # {{
121
133
max_request_body_size = 10485760
122
134
123
135
# List of API modules: ["Net", "Pool", "Miner", "Chain", "Stats", "Subscription", "Experiment", "Debug", "Indexer", "RichIndexer"]
124
- modules = [" Net" , " Pool" , " Miner" , " Chain" , " Stats" , " Subscription" , " Experiment" ] # {{
136
+ modules = [
137
+ " Net" ,
138
+ " Pool" ,
139
+ " Miner" ,
140
+ " Chain" ,
141
+ " Stats" ,
142
+ " Subscription" ,
143
+ " Experiment" ,
144
+ ] # {{
125
145
# dev => modules = ["Net", "Pool", "Miner", "Chain", "Stats", "Subscription", "Experiment", "Debug"]
126
146
# integration => modules = ["Net", "Pool", "Miner", "Chain", "Experiment", "Stats", "IntegrationTest"]
127
147
# }}
@@ -143,18 +163,18 @@ enable_deprecated_rpc = false # {{
143
163
144
164
[tx_pool ]
145
165
max_tx_pool_size = 180_000_000 # 180mb
146
- min_fee_rate = 1_000 # Here fee_rate are calculated directly using size in units of shannons/KB
166
+ min_fee_rate = 1_000 # Here fee_rate are calculated directly using size in units of shannons/KB
147
167
# min_rbf_rate > min_fee_rate means RBF is enabled
148
- min_rbf_rate = 1_500 # Here fee_rate are calculated directly using size in units of shannons/KB
168
+ min_rbf_rate = 1_500 # Here fee_rate are calculated directly using size in units of shannons/KB
149
169
max_tx_verify_cycles = 70_000_000
150
170
max_ancestors_count = 25
151
171
152
172
[store ]
153
- header_cache_size = 4096
154
- cell_data_cache_size = 128
173
+ header_cache_size = 4096
174
+ cell_data_cache_size = 128
155
175
block_proposals_cache_size = 30
156
176
block_tx_hashes_cache_size = 30
157
- block_uncles_cache_size = 30
177
+ block_uncles_cache_size = 30
158
178
159
179
# [notify]
160
180
# # Execute command when the new tip block changes, first arg is block hash.
0 commit comments