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: CONTRIBUTING.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,11 +10,11 @@ This project uses Protocol Buffers for consensus and node communication (except
10
10
11
11
-`make buf-lint` - Lint protobuf files to ensure they follow best practices
12
12
-`make buf-format` - Format protobuf files (this is included in `make lint`)
13
-
-`make buf-breaking` - Check for breaking changes against the master branch
13
+
-`make buf-breaking` - Check for breaking changes against the main branch
14
14
15
15
### Before Committing Changes
16
16
17
-
If you modify any `.proto` files, always run `make buf-lint` and `make buf-breaking` to ensure your changes don't introduce linting issues or breaking changes. The `buf-breaking` command compares your changes against the master branch to detect any backwards-incompatible modifications. Breaking changes should be carefully reviewed and documented as they can impact existing deployments.
17
+
If you modify any `.proto` files, always run `make buf-lint` and `make buf-breaking` to ensure your changes don't introduce linting issues or breaking changes. The `buf-breaking` command compares your changes against the main branch to detect any backwards-incompatible modifications. Breaking changes should be carefully reviewed and documented as they can impact existing deployments.
Copy file name to clipboardExpand all lines: crates/quake/README.md
+28Lines changed: 28 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -742,6 +742,34 @@ The workflow runs **10 parallel jobs** (matrix indices 0–9). Each job computes
742
742
743
743
PRs labeled `test-random` will also trigger this workflow.
744
744
745
+
### The `clean` command
746
+
747
+
By default, `clean` removes all node data and configuration. The following flags control what is removed:
748
+
749
+
| Flag | Short | Description |
750
+
|------|-------|-------------|
751
+
|`--all`|`-a`| Remove everything, including monitoring services and their data. Cannot be combined with other flags. |
752
+
|`--monitoring`|`-m`| Stop monitoring services and remove their data only. |
753
+
|`--data`|`-d`| Remove only execution and consensus layer data, preserving configuration. Cannot be combined with `--execution-data` or `--consensus-data`. |
754
+
|`--execution-data`|`-x`| Remove only execution layer (Reth) data. Cannot be combined with `--data` or `--consensus-data`. |
755
+
|`--consensus-data`|`-c`| Remove only consensus layer (Malachite) data. Cannot be combined with `--data` or `--execution-data`. |
756
+
757
+
```bash
758
+
# Remove node data only (keep config, monitoring intact)
0 commit comments