You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -87,7 +87,7 @@ For key management and validator rewards, consult our [validator guide online](h
87
87
88
88
## Run RPC Tests
89
89
90
-
RPC tests suite can be run for any release. To run tests go to https://github.com/AstarNetwork/Astar/actions/workflows/rpcTest.yml. Click Run workflow, in the dropdown input the release version tag you want to run the test suite. Then click the green Run workflow button to start the test suite.
90
+
RPC tests suite can be run for any release. To run tests go to <https://github.com/AstarNetwork/Astar/actions/workflows/rpcTest.yml>. Click Run workflow, in the dropdown input the release version tag you want to run the test suite. Then click the green Run workflow button to start the test suite.
91
91
92
92

93
93
@@ -102,19 +102,20 @@ Also `package` imports aren't properly propagated from root to sub-crates, so de
102
102
Defining _features_ in the root `Cargo.toml` is additive with the features defined in concrete crate's `Cargo.toml`.
103
103
104
104
**Adding Dependency**
105
+
105
106
1. Check if the dependency is already defined in the root `Cargo.toml`
106
107
1. if **yes**, nothing to do, just take note of the enabled features
107
108
2. if **no**, add it (make sure to use `default-features = false` if dependency is used in _no_std_ context)
108
109
2. Add `new_dependecy = { workspace = true }` to the required crate
109
110
3. In case dependency is defined with `default-features = false` but you need it in _std_ context, add `features = ["std"]` to the required crate.
0 commit comments