Skip to content

Commit

Permalink
Updated README.
Browse files Browse the repository at this point in the history
  • Loading branch information
denpamusic committed Sep 13, 2018
1 parent 8bc0ad4 commit 2e099a3
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -247,8 +247,13 @@ class CoinController extends Controller
```

### ZeroMQ
ZeroMQ support is available since v1.2.5.
To use ZeroMQ, daemon must be compiled with libzmq.
ZeroMQ support is available since v1.2.5 via [denpa/laravel-zeromq](https://packagist.org/packages/denpa/laravel-zeromq) package.
You'll need to install this package to use ZeroMQ features:
```
php composer.phar require denpa/laravel-zeromq
```

To use ZeroMQ, Bitcoin Core must be compiled with libzmq.
In order to check this, run `(bitcoind -h | grep -q zmq) && echo "ZeroMQ support available"`.
If you get "ZeroMQ support available" then you can use ZeroMQ.

Expand Down Expand Up @@ -284,7 +289,7 @@ bitcoind()->on('hashblock', function ($blockhash, $sequence) {
);
});
```
For more information about ZeroMQ please visit [Documentation](https://github.com/bitcoin/bitcoin/blob/master/doc/zmq.md).
For more information about ZeroMQ and it's usage, please visit [Documentation](https://github.com/bitcoin/bitcoin/blob/master/doc/zmq.md).

## License

Expand Down

0 comments on commit 2e099a3

Please sign in to comment.