Skip to content

Commit abba0ce

Browse files
committed
Introduce a custom kitchensink network
1 parent 0513a4b commit abba0ce

File tree

5 files changed

+456
-10
lines changed

5 files changed

+456
-10
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,7 @@
33
.DS_Store
44
node_modules
55
/*.json
6+
7+
# We do not want to commit any log files that we produce from running the code locally so this is
8+
# added to the .gitignore file.
9+
*.log

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@ features = [
6868
"rpc-types",
6969
"signer-local",
7070
"std",
71+
"network",
72+
"serde",
73+
"rpc-types-eth",
7174
]
7275

7376
[profile.bench]

crates/node/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ tracing = { workspace = true }
1616
revive-dt-node-interaction = { workspace = true }
1717
revive-dt-config = { workspace = true }
1818

19+
serde = { workspace = true }
1920
serde_json = { workspace = true }
2021

2122
sp-core = { workspace = true }

0 commit comments

Comments
 (0)