Merge pull request #12 from openrelayxyz/pre-cardinal-docs-update

Corrections to documentation.
This commit is contained in:
Philip Morlier 2022-02-14 13:15:56 -05:00 committed by GitHub
commit eea0ccd0ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ For the sake of this tutorial we will be building the Hello plugin. Navigate to
$ go build -buildmode=plugin $ go build -buildmode=plugin
This will compile the plugin and produce a ``hello.so`` file. Move ``hello.so`` into ``~/.ethereum/plugins`` . In order to use this plugin geth will need to be started with a ``http.api=mymamespace`` flag. Additionally you will need to include a ``--http`` flag in order to access the standard json rpc methods. This will compile the plugin and produce a ``hello.so`` file. Move ``hello.so`` into ``~/.ethereum/plugins`` . In order to use this plugin geth will need to be started with a ``http.api=mynamespace`` flag. Additionally you will need to include a ``--http`` flag in order to access the standard json rpc methods.
.. note:: The above location may change when changing ``--datadir``. .. note:: The above location may change when changing ``--datadir``.

View File

@ -61,7 +61,7 @@ Blocktracer is an subscription plugin written such that for each block mined, bl
Usage Usage
===== =====
As with any websocket an itial connection will need to be established. As with any websocket an initial connection will need to be established.
Here we are using wscat to connect to local host port 8556. Here we are using wscat to connect to local host port 8556.