forked from ethereum/go-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix geth timestamp incrementing (ethereum#14)
* Making geth only update timestamp when it is over 600s older than current timestamp. * Commenting out logic check to validate timestamp works the way it no longer works
- Loading branch information
1 parent
fa42b78
commit 1efe552
Showing
6 changed files
with
70 additions
and
14 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
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
version: "3" | ||
|
||
services: | ||
geth_l2: | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
volumes: | ||
- l2-node-data:/mnt/l2-node/l2:rw | ||
environment: | ||
- CLEAR_DATA_KEY | ||
- TARGET_GAS_LIMIT | ||
- VOLUME_PATH=/mnt/l2-node/l2 | ||
- HOSTNAME=geth_l2 | ||
- PORT=8545 | ||
- NETWORK_ID=108 | ||
ports: | ||
- 8545:8545 | ||
|
||
volumes: | ||
l2-node-data: |
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