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 }}'