-
Notifications
You must be signed in to change notification settings - Fork 45
/
Dummy_Relay.toml
57 lines (53 loc) · 1.35 KB
/
Dummy_Relay.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name = "Dummy_Relay"
port="9085"
hostname="localhost"
db_path="db/Dummy_Relay/requests"
# This will be replaced by the task queue.
remote_db_path="db/Dummy_Relay/remote_request"
# max retries opening sled db if it is locked
db_open_max_retries=500
# retry back off time in ms if sled db is locked
db_open_retry_backoff_msec=10
# FOR TLS
cert_path="credentials/fabric_cert.pem"
key_path="credentials/fabric_key"
tls=false
# Networks map is used to identity the network behind the relay
# by its network name so the request can be routed to the right driver
[networks]
[networks.Dummy_Network]
network="Dummy"
# Location of the remote relays
[relays]
[relays.Corda_Relay]
hostname="localhost"
port="9081"
tls=false
tlsca_cert_path="credentials/fabric_ca_cert.pem"
[relays.Dummy_Relay]
hostname="localhost"
port="9085"
tls=false
tlsca_cert_path="credentials/fabric_ca_cert.pem"
[relays.Fabric_Relay2]
hostname="localhost"
port="9083"
tls=false
tlsca_cert_path="credentials/fabric_ca_cert.pem"
# host and port of the driver identified by networks map
[drivers]
[drivers.Fabric]
hostname="localhost"
port="9090"
tls=false
tlsca_cert_path="credentials/fabric_ca_cert.pem"
[drivers.Corda]
hostname="localhost"
port="9099"
tls=false
tlsca_cert_path="credentials/fabric_ca_cert.pem"
[drivers.Dummy]
hostname="localhost"
port="9092"
tls=false
tlsca_cert_path="credentials/fabric_ca_cert.pem"