[#770] node/config: Add notary deposit config

Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
This commit is contained in:
Pavel Karpy 2021-08-24 17:33:18 +03:00 committed by Pavel Karpy
parent 2ef5e86aaf
commit e29bcd98e2
5 changed files with 60 additions and 2 deletions

View file

@ -46,6 +46,8 @@ NEOFS_MORPH_DIAL_TIMEOUT=30s
NEOFS_MORPH_DISABLE_CACHE=true
NEOFS_MORPH_RPC_ENDPOINT=https://rpc1.morph.fs.neo.org:40341 https://rpc2.morph.fs.neo.org:40341
NEOFS_MORPH_NOTIFICATION_ENDPOINT=wss://rpc1.morph.fs.neo.org:40341/ws wss://rpc2.morph.fs.neo.org:40341/ws
NEOFS_MORPH_NOTARY_DEPOSIT_AMOUNT=100000001
NEOFS_MORPH_NOTARY_DEPOSIT_DURATION=1001
# Main chain section (optional)
NEOFS_MAINCHAIN_DIAL_TIMEOUT=30s

View file

@ -70,7 +70,11 @@
"notification_endpoint": [
"wss://rpc1.morph.fs.neo.org:40341/ws",
"wss://rpc2.morph.fs.neo.org:40341/ws"
]
],
"notary": {
"deposit_amount": 100000001,
"deposit_duration": 1001
}
},
"mainchain": {
"dial_timeout": "30s",

View file

@ -61,6 +61,9 @@ morph:
notification_endpoint:
- wss://rpc1.morph.fs.neo.org:40341/ws
- wss://rpc2.morph.fs.neo.org:40341/ws
notary:
deposit_amount: 100000001
deposit_duration: 1001
mainchain:
dial_timeout: 30s