-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
17 changed files
with
778 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# chain = "mainnet" | ||
# chain = "testnet" | ||
# chain = "your_path_to/dev.toml" | ||
chain = "{{ ckb_light_client_chain }}" | ||
|
||
[store] | ||
path = "data/store" | ||
|
||
[network] | ||
path = "data/network" | ||
|
||
listen_addresses = {{ ckb_light_client_network_listen_addresses | default(["/ip4/0.0.0.0/tcp/8118"]) | to_json }} | ||
### Specify the public and routable network addresses | ||
# public_addresses = [] | ||
|
||
# Node connects to nodes listed here to discovery other peers when there's no local stored peers. | ||
# When chain.spec is changed, this usually should also be changed to the bootnodes in the new chain. | ||
bootnodes = {{ ckb_light_client_network_bootnodes | default([]) | to_json }} | ||
|
||
### Whitelist-only mode | ||
# whitelist_only = false | ||
### Whitelist peers connecting from the given IP addresses | ||
# whitelist_peers = [] | ||
|
||
### Enable `SO_REUSEPORT` feature to reuse port on Linux, not supported on other OS yet | ||
# reuse_port_on_linux = true | ||
|
||
max_peers = 125 | ||
max_outbound_peers = 2 | ||
# 2 minutes | ||
ping_interval_secs = 120 | ||
# 20 minutes | ||
ping_timeout_secs = 1200 | ||
connect_outbound_interval_secs = 15 | ||
# If set to true, try to register upnp | ||
upnp = false | ||
# If set to true, network service will add discovered local address to peer store, it's helpful for private net development | ||
discovery_local_address = false | ||
# If set to true, random cleanup when there are too many inbound nodes | ||
# Ensure that itself can continue to serve as a bootnode node | ||
bootnode_mode = false | ||
|
||
[rpc] | ||
# Light client rpc is designed for self hosting, exposing to public network is not recommended and may cause security issues. | ||
# By default RPC only binds to localhost, thus it only allows accessing from the same machine. | ||
listen_address = "{{ ckb_light_client_rpc_listen_address | default("127.0.0.1:9000") }}" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,4 +11,4 @@ pkill ckb | |
sleep 3 | ||
rm -rf tmp | ||
rm -rf report/report.html | ||
echo echo "run cusscessful" | ||
echo "run cusscessful" |
Oops, something went wrong.