Corrections to documentation.

This commit is contained in:
philip-morlier 2022-02-14 10:15:11 -08:00
parent 773a47597c
commit 28725419ac
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
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``.

View File

@ -61,7 +61,7 @@ Blocktracer is an subscription plugin written such that for each block mined, bl
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.