Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade parity to 1.9.7 #23

Merged
merged 2 commits into from
May 2, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion parity-instantseal/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM parity/parity:v1.8.0
FROM parity/parity:v1.9.7

# install all dependencies
RUN apt-get update \
Expand Down
8 changes: 4 additions & 4 deletions parity-instantseal/instant-seal-config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ base_path = "/parity"
db_path = "/parity/chains"
# Your encrypted private keys will be stored in /parity/keys.
keys_path = "/parity/keys"
# Parity will not save local transaction queue to disk.
no_persistent_txqueue = true

[account]
# From: [0x913da4198e6be1d5f5e4a40d0667f70c0b5430eb] you'll be able to send tranasactions without password.
Expand All @@ -26,7 +28,7 @@ reserved_only = true
# JSON-RPC will be listening for connections on IP 0.0.0.0.
interface = "all"
# Allows Cross-Origin Requests from domain '*'.
cors = "*"
cors = ["*"]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Did the syntax change in 1.9.7, or was this wrong before?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

# Only selected APIs will be exposed over this interface.
apis = ["all"]
# Allow connections only using specified addresses.
Expand All @@ -52,7 +54,7 @@ disable = true

[ipfs]
# You won't be able to hash-query blockchain data.
disable = true
enable = false
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Comment above is now incorrect.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The comment remains true, they just changed the nature of the variable


[dapps]
# You won't be able to access any web Dapps.
Expand All @@ -67,8 +69,6 @@ gas_floor_target = "6500000"
gas_cap = "6500000"
# Parity will reject transactions above 6500000 gas.
tx_gas_limit = "6500000"
# Parity will not save local transaction queue to disk.
no_persistent_txqueue = true

[footprint]
# Significant speed up but unclean exit is unrecoverable (disables DB WAL).
Expand Down
2 changes: 1 addition & 1 deletion parity-poa/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM parity/parity:v1.8.3
FROM parity/parity:v1.9.7

# install all dependencies
RUN apt-get update \
Expand Down
8 changes: 4 additions & 4 deletions parity-poa/aura-config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ base_path = "/parity"
db_path = "/parity/chains"
# Your encrypted private keys will be stored in /parity/keys.
keys_path = "/parity/keys"
# Parity will not save local transaction queue to disk.
no_persistent_txqueue = true

[account]
# From: [0x913da4198e6be1d5f5e4a40d0667f70c0b5430eb] you'll be able to send tranasactions without password.
Expand All @@ -26,7 +28,7 @@ reserved_only = true
# JSON-RPC will be listening for connections on IP 0.0.0.0.
interface = "all"
# Allows Cross-Origin Requests from domain '*'.
cors = "*"
cors = ["*"]
# Only selected APIs will be exposed over this interface.
apis = ["all"]
# Allow connections only using specified addresses.
Expand All @@ -52,7 +54,7 @@ disable = true

[ipfs]
# You won't be able to hash-query blockchain data.
disable = true
enable = false
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same as above, comment needs to be updated. Also, I'm curious what this actually does...

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I read a tiny bit about it, it's like since ethereum stuff is all hashes, you can export those via IPFS and serve up ethereum data via ipfs for... reasons.


[dapps]
# You won't be able to access any web Dapps.
Expand All @@ -67,8 +69,6 @@ gas_floor_target = "6500000"
gas_cap = "6500000"
# Parity will reject transactions above 6500000 gas.
tx_gas_limit = "6500000"
# Parity will not save local transaction queue to disk.
no_persistent_txqueue = true

[footprint]
# Significant speed up but unclean exit is unrecoverable (disables DB WAL).
Expand Down