Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ develop_prepare:
bash develop_prepare.sh

test_cases := \
test_cases/replace_rpc \
test_cases/ckb_cli \
test_cases/ckb2023 \
test_cases/contracts \
Expand Down
1 change: 1 addition & 0 deletions download.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"0.200.0",
"0.201.0",
"0.202.0",
"0.203.0-rc1",
] # Replace with your versions

DOWNLOAD_DIR = "download"
Expand Down
1 change: 1 addition & 0 deletions framework/helper/ckb_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -642,6 +642,7 @@ def get_deploy_toml_config(account_private, contract_bin_path, enable_type_id):

[[dep_groups]]
name = "my_dep_group"
enable_type_id = {str(enable_type_id).lower()}
cells = []

[lock]
Expand Down
15 changes: 11 additions & 4 deletions framework/test_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,27 +18,34 @@ class CkbNodeConfigPath(Enum):
"source/template/ckb/v200/ckb.toml.j2",
"source/template/ckb/v200/ckb-miner.toml.j2",
"source/template/ckb/v200/specs/dev.toml",
"download/0.202.0",
"download/0.203.0",
)
TESTNET = (
"source/template/ckb/v200/ckb.toml.j2",
"source/template/ckb/v200/ckb-miner.toml.j2",
"source/template/specs/testnet.toml.j2",
"download/0.202.0",
"download/0.203.0",
)

CURRENT_MAIN = (
"source/template/ckb/v200/ckb.toml.j2",
"source/template/ckb/v200/ckb-miner.toml.j2",
"source/template/specs/mainnet.toml.j2",
"download/0.202.0",
"download/0.203.0",
)

PREVIEW_DUMMY = (
"source/template/ckb/v200/ckb.toml.j2",
"source/template/ckb/v200/ckb-miner.toml.j2",
"source/template/specs/preview_dev.toml",
"download/0.202.0",
"download/0.203.0",
)

v203 = (
"source/template/ckb/v200/ckb.toml.j2",
"source/template/ckb/v200/ckb-miner.toml.j2",
"source/template/ckb/v200/specs/dev.toml",
"download/0.203.0",
)

v202 = (
Expand Down
Loading