mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-25 13:47:19 +00:00
config: add default notary configuration
For a better user experience.
This commit is contained in:
parent
bcb82b457d
commit
717591afe8
10 changed files with 59 additions and 1 deletions
|
@ -20,6 +20,7 @@ ProtocolConfiguration:
|
|||
- seed5.neo.org:10333
|
||||
VerifyBlocks: true
|
||||
VerifyTransactions: false
|
||||
P2PSigExtensions: false
|
||||
|
||||
ApplicationConfiguration:
|
||||
# LogPath could be set up in case you need stdout logs to some proper file.
|
||||
|
@ -50,6 +51,11 @@ ApplicationConfiguration:
|
|||
MinPeers: 5
|
||||
Oracle:
|
||||
Enabled: false
|
||||
P2PNotary:
|
||||
Enabled: false
|
||||
UnlockWallet:
|
||||
Path: "/notary_wallet.json"
|
||||
Password: "pass"
|
||||
|
||||
RPC:
|
||||
Enabled: true
|
||||
|
|
|
@ -16,6 +16,7 @@ ProtocolConfiguration:
|
|||
- 172.200.0.4:20336
|
||||
VerifyBlocks: true
|
||||
VerifyTransactions: true
|
||||
P2PSigExtensions: false
|
||||
|
||||
ApplicationConfiguration:
|
||||
# LogPath could be set up in case you need stdout logs to some proper file.
|
||||
|
@ -55,6 +56,11 @@ ApplicationConfiguration:
|
|||
UnlockWallet:
|
||||
Path: "/wallet4.json"
|
||||
Password: "four"
|
||||
P2PNotary:
|
||||
Enabled: false
|
||||
UnlockWallet:
|
||||
Path: "/notary_wallet.json"
|
||||
Password: "pass"
|
||||
RPC:
|
||||
Enabled: true
|
||||
MaxGasInvoke: 15
|
||||
|
|
|
@ -16,6 +16,7 @@ ProtocolConfiguration:
|
|||
- 172.200.0.4:20336
|
||||
VerifyBlocks: true
|
||||
VerifyTransactions: true
|
||||
P2PSigExtensions: false
|
||||
|
||||
ApplicationConfiguration:
|
||||
# LogPath could be set up in case you need stdout logs to some proper file.
|
||||
|
@ -55,6 +56,11 @@ ApplicationConfiguration:
|
|||
UnlockWallet:
|
||||
Path: "/wallet1.json"
|
||||
Password: "one"
|
||||
P2PNotary:
|
||||
Enabled: false
|
||||
UnlockWallet:
|
||||
Path: "/notary_wallet.json"
|
||||
Password: "pass"
|
||||
RPC:
|
||||
Enabled: true
|
||||
MaxGasInvoke: 15
|
||||
|
|
|
@ -10,6 +10,7 @@ ProtocolConfiguration:
|
|||
- 172.200.0.1:20333
|
||||
VerifyBlocks: true
|
||||
VerifyTransactions: true
|
||||
P2PSigExtensions: false
|
||||
|
||||
ApplicationConfiguration:
|
||||
# LogPath could be set up in case you need stdout logs to some proper file.
|
||||
|
@ -46,6 +47,11 @@ ApplicationConfiguration:
|
|||
UnlockWallet:
|
||||
Path: "/wallet1_solo.json"
|
||||
Password: "one"
|
||||
P2PNotary:
|
||||
Enabled: false
|
||||
UnlockWallet:
|
||||
Path: "/notary_wallet.json"
|
||||
Password: "pass"
|
||||
RPC:
|
||||
Enabled: true
|
||||
EnableCORSWorkaround: false
|
||||
|
|
|
@ -16,6 +16,7 @@ ProtocolConfiguration:
|
|||
- 172.200.0.4:20336
|
||||
VerifyBlocks: true
|
||||
VerifyTransactions: true
|
||||
P2PSigExtensions: false
|
||||
|
||||
ApplicationConfiguration:
|
||||
# LogPath could be set up in case you need stdout logs to some proper file.
|
||||
|
@ -55,6 +56,11 @@ ApplicationConfiguration:
|
|||
UnlockWallet:
|
||||
Path: "/wallet3.json"
|
||||
Password: "three"
|
||||
P2PNotary:
|
||||
Enabled: false
|
||||
UnlockWallet:
|
||||
Path: "/notary_wallet.json"
|
||||
Password: "pass"
|
||||
RPC:
|
||||
Enabled: true
|
||||
MaxGasInvoke: 15
|
||||
|
|
|
@ -16,6 +16,7 @@ ProtocolConfiguration:
|
|||
- 172.200.0.4:20336
|
||||
VerifyBlocks: true
|
||||
VerifyTransactions: true
|
||||
P2PSigExtensions: false
|
||||
|
||||
ApplicationConfiguration:
|
||||
# LogPath could be set up in case you need stdout logs to some proper file.
|
||||
|
@ -55,6 +56,11 @@ ApplicationConfiguration:
|
|||
UnlockWallet:
|
||||
Path: "/wallet2.json"
|
||||
Password: "two"
|
||||
P2PNotary:
|
||||
Enabled: false
|
||||
UnlockWallet:
|
||||
Path: "/notary_wallet.json"
|
||||
Password: "pass"
|
||||
RPC:
|
||||
Enabled: true
|
||||
MaxGasInvoke: 15
|
||||
|
|
|
@ -16,6 +16,7 @@ ProtocolConfiguration:
|
|||
- 127.0.0.1:20336
|
||||
VerifyBlocks: true
|
||||
VerifyTransactions: true
|
||||
P2PSigExtensions: false
|
||||
|
||||
ApplicationConfiguration:
|
||||
# LogPath could be set up in case you need stdout logs to some proper file.
|
||||
|
@ -44,6 +45,11 @@ ApplicationConfiguration:
|
|||
MaxPeers: 10
|
||||
AttemptConnPeers: 5
|
||||
MinPeers: 3
|
||||
P2PNotary:
|
||||
Enabled: false
|
||||
UnlockWallet:
|
||||
Path: "/notary_wallet.json"
|
||||
Password: "pass"
|
||||
RPC:
|
||||
Enabled: true
|
||||
MaxGasInvoke: 15
|
||||
|
|
|
@ -20,6 +20,7 @@ ProtocolConfiguration:
|
|||
- seed5t.neo.org:20333
|
||||
VerifyBlocks: true
|
||||
VerifyTransactions: false
|
||||
P2PSigExtensions: false
|
||||
|
||||
ApplicationConfiguration:
|
||||
# LogPath could be set up in case you need stdout logs to some proper file.
|
||||
|
@ -50,7 +51,11 @@ ApplicationConfiguration:
|
|||
MinPeers: 5
|
||||
Oracle:
|
||||
Enabled: false
|
||||
|
||||
P2PNotary:
|
||||
Enabled: false
|
||||
UnlockWallet:
|
||||
Path: "/notary_wallet.json"
|
||||
Password: "pass"
|
||||
RPC:
|
||||
Enabled: true
|
||||
MaxGasInvoke: 15
|
||||
|
|
|
@ -8,6 +8,7 @@ ProtocolConfiguration:
|
|||
ValidatorsCount: 1
|
||||
VerifyBlocks: true
|
||||
VerifyTransactions: true
|
||||
P2PSigExtensions: false
|
||||
|
||||
ApplicationConfiguration:
|
||||
# LogPath could be set up in case you need stdout logs to some proper file.
|
||||
|
@ -39,6 +40,11 @@ ApplicationConfiguration:
|
|||
UnlockWallet:
|
||||
Path: "testdata/wallet1_solo.json"
|
||||
Password: "one"
|
||||
P2PNotary:
|
||||
Enabled: false
|
||||
UnlockWallet:
|
||||
Path: "/notary_wallet.json"
|
||||
Password: "pass"
|
||||
RPC:
|
||||
Address: 127.0.0.1
|
||||
MaxGasInvoke: 15
|
||||
|
|
|
@ -46,6 +46,11 @@ ApplicationConfiguration:
|
|||
MaxPeers: 50
|
||||
AttemptConnPeers: 5
|
||||
MinPeers: 1
|
||||
P2PNotary:
|
||||
Enabled: false
|
||||
UnlockWallet:
|
||||
Path: "/notary_wallet.json"
|
||||
Password: "pass"
|
||||
RPC:
|
||||
Address: 127.0.0.1
|
||||
MaxGasInvoke: 15
|
||||
|
|
Loading…
Reference in a new issue