File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
146
146
// `spec_version`, and `authoring_version` are the same between Wasm and native.
147
147
// This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use
148
148
// the compatible custom types.
149
- spec_version : 196 ,
149
+ spec_version : 197 ,
150
150
impl_version : 1 ,
151
151
apis : RUNTIME_API_VERSIONS ,
152
152
transaction_version : 1 ,
Original file line number Diff line number Diff line change @@ -56,10 +56,6 @@ echo "*** Building chainspec..."
56
56
" $BASE_DIR /target/release/node-subtensor" build-spec --disable-default-bootnode --raw --chain $CHAIN > $FULL_PATH
57
57
echo " *** Chainspec built and output to file"
58
58
59
- # generate node keys
60
- $BASE_DIR /target/release/node-subtensor key generate-node-key --chain=" $FULL_PATH " --base-path /tmp/alice
61
- $BASE_DIR /target/release/node-subtensor key generate-node-key --chain=" $FULL_PATH " --base-path /tmp/bob
62
-
63
59
if [ $NO_PURGE -eq 1 ]; then
64
60
echo " *** Purging previous state skipped..."
65
61
else
@@ -77,11 +73,11 @@ alice_start=(
77
73
--alice
78
74
--port 30334
79
75
--rpc-port 9946
80
- --rpc-external
81
76
--validator
82
77
--rpc-cors=all
83
78
--allow-private-ipv4
84
79
--discover-local
80
+ --unsafe-force-node-key-generation
85
81
)
86
82
87
83
bob_start=(
@@ -92,8 +88,10 @@ bob_start=(
92
88
--port 30335
93
89
--rpc-port 9945
94
90
--validator
91
+ --rpc-cors=all
95
92
--allow-private-ipv4
96
93
--discover-local
94
+ --unsafe-force-node-key-generation
97
95
)
98
96
99
97
trap ' pkill -P $$' EXIT SIGINT SIGTERM
You can’t perform that action at this time.
0 commit comments