From 013defa384cd41a63c40377cf2ecdae6d30cb020 Mon Sep 17 00:00:00 2001 From: Scott Bigelow Date: Tue, 1 May 2018 21:13:13 -0700 Subject: [PATCH 1/2] Upgrade to 1.9.7 and tweak config for compat with new version --- parity-instantseal/Dockerfile | 2 +- parity-instantseal/instant-seal-config.toml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/parity-instantseal/Dockerfile b/parity-instantseal/Dockerfile index 81d3e92..b9f1cfa 100644 --- a/parity-instantseal/Dockerfile +++ b/parity-instantseal/Dockerfile @@ -1,4 +1,4 @@ -FROM parity/parity:v1.8.0 +FROM parity/parity:v1.9.7 # install all dependencies RUN apt-get update \ diff --git a/parity-instantseal/instant-seal-config.toml b/parity-instantseal/instant-seal-config.toml index 3017f3e..b8bd092 100644 --- a/parity-instantseal/instant-seal-config.toml +++ b/parity-instantseal/instant-seal-config.toml @@ -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. @@ -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. @@ -52,7 +54,7 @@ disable = true [ipfs] # You won't be able to hash-query blockchain data. -disable = true +enable = false [dapps] # You won't be able to access any web Dapps. @@ -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). From 97447d92ca63fd2840ba99c8eef6cb86a9dc5162 Mon Sep 17 00:00:00 2001 From: Scott Bigelow Date: Tue, 1 May 2018 21:16:02 -0700 Subject: [PATCH 2/2] Same for aura. Config tweak, disable/enable is annoying --- parity-poa/Dockerfile | 2 +- parity-poa/aura-config.toml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/parity-poa/Dockerfile b/parity-poa/Dockerfile index 5f12d2f..ebd9a90 100644 --- a/parity-poa/Dockerfile +++ b/parity-poa/Dockerfile @@ -1,4 +1,4 @@ -FROM parity/parity:v1.8.3 +FROM parity/parity:v1.9.7 # install all dependencies RUN apt-get update \ diff --git a/parity-poa/aura-config.toml b/parity-poa/aura-config.toml index c282b29..ef4bae8 100644 --- a/parity-poa/aura-config.toml +++ b/parity-poa/aura-config.toml @@ -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. @@ -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. @@ -52,7 +54,7 @@ disable = true [ipfs] # You won't be able to hash-query blockchain data. -disable = true +enable = false [dapps] # You won't be able to access any web Dapps. @@ -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).