-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(storage): apply clippy suggestions
- Loading branch information
1 parent
fcb72d4
commit 908b965
Showing
20 changed files
with
138 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
version: '3.8' | ||
services: | ||
node-0: | ||
entrypoint: /entrypoints/entrypoint.sh | ||
image: tycho-network | ||
networks: | ||
default: | ||
ipv4_address: 172.0.30.2 | ||
stop_grace_period: 1s | ||
stop_signal: KILL | ||
volumes: | ||
- ./entrypoints/node-0_entrypoint.sh:/entrypoints/entrypoint.sh | ||
- /home/odm3n/dev/work/tycho/.scratch/global-config.json:/app/global-config.json | ||
- /home/odm3n/dev/work/tycho/.scratch/logs/node-0:/app/logs:rw | ||
node-1: | ||
entrypoint: /entrypoints/entrypoint.sh | ||
image: tycho-network | ||
networks: | ||
default: | ||
ipv4_address: 172.0.30.3 | ||
stop_grace_period: 1s | ||
stop_signal: KILL | ||
volumes: | ||
- ./entrypoints/node-0_entrypoint.sh:/entrypoints/entrypoint.sh | ||
- /home/odm3n/dev/work/tycho/.scratch/global-config.json:/app/global-config.json | ||
- /home/odm3n/dev/work/tycho/.scratch/logs/node-0:/app/logs:rw | ||
node-2: | ||
entrypoint: /entrypoints/entrypoint.sh | ||
image: tycho-network | ||
networks: | ||
default: | ||
ipv4_address: 172.0.30.4 | ||
stop_grace_period: 1s | ||
stop_signal: KILL | ||
volumes: | ||
- ./entrypoints/node-0_entrypoint.sh:/entrypoints/entrypoint.sh | ||
- /home/odm3n/dev/work/tycho/.scratch/global-config.json:/app/global-config.json | ||
- /home/odm3n/dev/work/tycho/.scratch/logs/node-0:/app/logs:rw | ||
node-3: | ||
entrypoint: /entrypoints/entrypoint.sh | ||
image: tycho-network | ||
networks: | ||
default: | ||
ipv4_address: 172.0.30.5 | ||
stop_grace_period: 1s | ||
stop_signal: KILL | ||
volumes: | ||
- ./entrypoints/node-0_entrypoint.sh:/entrypoints/entrypoint.sh | ||
- /home/odm3n/dev/work/tycho/.scratch/global-config.json:/app/global-config.json | ||
- /home/odm3n/dev/work/tycho/.scratch/logs/node-0:/app/logs:rw | ||
node-4: | ||
entrypoint: /entrypoints/entrypoint.sh | ||
image: tycho-network | ||
networks: | ||
default: | ||
ipv4_address: 172.0.30.6 | ||
stop_grace_period: 1s | ||
stop_signal: KILL | ||
volumes: | ||
- ./entrypoints/node-0_entrypoint.sh:/entrypoints/entrypoint.sh | ||
- /home/odm3n/dev/work/tycho/.scratch/global-config.json:/app/global-config.json | ||
- /home/odm3n/dev/work/tycho/.scratch/logs/node-0:/app/logs:rw | ||
networks: | ||
default: | ||
ipam: | ||
config: | ||
- subnet: 172.30.0.0/24 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,4 +47,4 @@ impl VersionProvider for NodeStateVersionProvider { | |
state.insert(Self::DB_VERSION_KEY, version)?; | ||
Ok(()) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.