From 5eee21640e516ffc9aada0639861565ec11f3b70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=97=B5=E5=81=A5?= Date: Thu, 24 Sep 2020 13:09:36 +0800 Subject: [PATCH] update src/test/resources/config-example.toml --- src/test/resources/config-example.toml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/test/resources/config-example.toml b/src/test/resources/config-example.toml index 9eabf4f2f..c4fffbecc 100644 --- a/src/test/resources/config-example.toml +++ b/src/test/resources/config-example.toml @@ -4,11 +4,19 @@ certPath = "conf" # The certification path # The following configurations take the certPath by default: -# caCert = "conf/ca.crt" # CA cert file path +# caCert = "conf/ca.crt" # CA cert file path + # When the SDK makes a GM SSL connection to the node, the default CA certificate path is ${certPath}/gm/gmca.crt # sslCert = "conf/sdk.crt" # SSL cert file path + # When the SDK makes a GM SSL connection to the node, the default SDK certificate path is ${certPath}/gm/gmsdk.crt # sslKey = "conf/sdk.key" # SSL key file path + # When the SDK makes a GM SSL connection to the node, the default SDK privateKey path is ${certPath}/gm/gmsdk.key # enSslCert = "conf/gm/gmensdk.crt" # GM encryption cert file path + # This configuration item needs to be configured only when the SDK and node use GM SSL connection, + # and the default is to load the GM SSL encryption certificate from ${certPath}/gm/gmensdk.crt # enSslKey = "conf/gm/gmensdk.key" # GM ssl cert file path + # This configuration item needs to be configured only when the SDK and node use GM SSL connection, + # and the default is to load the GM SSL encryption privateKey from ${certPath}/gm/gmensdk.key + [network] peers=["127.0.0.1:20200", "127.0.0.1:20201"] # The peer list to connect