From 9e925fd4ce8a5f705a59080d3bf7201c207cd405 Mon Sep 17 00:00:00 2001 From: Simon Wicky Date: Tue, 31 Oct 2023 15:16:42 +0100 Subject: [PATCH] config file template update --- clients/native/src/client/config/template.rs | 6 ++++++ clients/socks5/src/config/template.rs | 6 ++++++ service-providers/network-requester/src/config/template.rs | 6 ++++++ 3 files changed, 18 insertions(+) diff --git a/clients/native/src/client/config/template.rs b/clients/native/src/client/config/template.rs index 413b61790d..18d0eeac28 100644 --- a/clients/native/src/client/config/template.rs +++ b/clients/native/src/client/config/template.rs @@ -50,6 +50,12 @@ keys.private_encryption_key_file = '{{ storage_paths.keys.private_encryption_key # Path to file containing public encryption key. keys.public_encryption_key_file = '{{ storage_paths.keys.public_encryption_key_file }}' +# Path to file containing private ecash key. +keys.private_ecash_key_file = '{{ storage_paths.keys.private_ecash_key_file }}' + +# Path to file containing public ecash key. +keys.public_ecash_key_file = '{{ storage_paths.keys.public_ecash_key_file }}' + # A gateway specific, optional, base58 stringified shared key used for # communication with particular gateway. keys.gateway_shared_key_file = '{{ storage_paths.keys.gateway_shared_key_file }}' diff --git a/clients/socks5/src/config/template.rs b/clients/socks5/src/config/template.rs index 764a7c6884..0357633691 100644 --- a/clients/socks5/src/config/template.rs +++ b/clients/socks5/src/config/template.rs @@ -50,6 +50,12 @@ keys.private_encryption_key_file = '{{ storage_paths.keys.private_encryption_key # Path to file containing public encryption key. keys.public_encryption_key_file = '{{ storage_paths.keys.public_encryption_key_file }}' +# Path to file containing private ecash key. +keys.private_ecash_key_file = '{{ storage_paths.keys.private_ecash_key_file }}' + +# Path to file containing public ecash key. +keys.public_ecash_key_file = '{{ storage_paths.keys.public_ecash_key_file }}' + # A gateway specific, optional, base58 stringified shared key used for # communication with particular gateway. keys.gateway_shared_key_file = '{{ storage_paths.keys.gateway_shared_key_file }}' diff --git a/service-providers/network-requester/src/config/template.rs b/service-providers/network-requester/src/config/template.rs index ee6e3ffc51..07564cd229 100644 --- a/service-providers/network-requester/src/config/template.rs +++ b/service-providers/network-requester/src/config/template.rs @@ -51,6 +51,12 @@ keys.private_encryption_key_file = '{{ storage_paths.keys.private_encryption_key # Path to file containing public encryption key. keys.public_encryption_key_file = '{{ storage_paths.keys.public_encryption_key_file }}' +# Path to file containing private ecash key. +keys.private_ecash_key_file = '{{ storage_paths.keys.private_ecash_key_file }}' + +# Path to file containing public ecash key. +keys.public_ecash_key_file = '{{ storage_paths.keys.public_ecash_key_file }}' + # A gateway specific, optional, base58 stringified shared key used for # communication with particular gateway. keys.gateway_shared_key_file = '{{ storage_paths.keys.gateway_shared_key_file }}'