-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4be5321
commit a5517ea
Showing
1 changed file
with
32 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,41 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'connections' => [ | ||
|
||
'default' => [ | ||
/* | ||
|-------------------------------------------------------------------------- | ||
| ZeroMQ protocol | ||
|-------------------------------------------------------------------------- | ||
| Transport protocol that'll be used to | ||
| establish ZeroMQ connections. | ||
| | ||
*/ | ||
|
||
'protocol' => 'tcp', | ||
'host' => '127.0.0.1', | ||
'port' => 28332, | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| ZeroMQ host | ||
|-------------------------------------------------------------------------- | ||
| IP or hostname of peer with which ZeroMQ connection | ||
| should be established. | ||
| | ||
*/ | ||
|
||
'host' => 'localhost', | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| ZeroMQ port | ||
|-------------------------------------------------------------------------- | ||
| Port to which ZeroMQ connection should | ||
| be established. | ||
*/ | ||
|
||
'port' => 28332, | ||
], | ||
], | ||
]; |