mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-25 21:17:16 +00:00
17a4a56634
* add context * extract chain events * run commit in goroutines * mine only on canonical * typo * linters * fmt * mark unused methods * restore stress test * test single miner * remove unsafe Trie storage * remove locks from miner * restore interrupt * remove result goroutine * remove unconfirmedBlocks * cherry-pick 04a1d475ff1a36ad8f92fec80385df18c52bdc1f * extract uncles * one miner succeeded * restore context cancel * cleanup * skip an unstable test * remove pending state * use context instead of interrupt func * calculate sealHash only once * comment out unstable test * after merge * fix after merge Co-authored-by: ledgerwatch <akhounov@gmail.com> |
||
---|---|---|
.. | ||
commands | ||
.gitignore | ||
main.go | ||
Readme.md |
Getting Started
In order to build and run turbo-geth node together with RPC daemon, you need to do the following:
- Clone turbo-geth repo
- Build it by running
make
- Start it (it will start syncing to the mainnet) like this:
./build/bin/geth --remote-db-listen-addr localhost:9999
- Look out for this in the console/log file:
INFO [11-30|18:34:12.687] Remote DB interface listening on address=localhost:9999
- In another terminal/tab, build RPC daemon:
make rpcdaemon
- Run it:
./build/bin/rpcdaemon --rpcapi eth
By default, it will connect to the turbo-geth node on the localhost:9999
, but this can be changed via command line parameters. Note that it does not matter in which order you start these two processes, RPC daemon will only try to connect to turbo-geth node when serving its first RPC request, and then it will reconnect if connection is lost (for example, if you restart turbo-geth)
7. Try eth_blockNumber
call. In another console/tab, use curl
to make RPC call:
curl -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"eth_blockNumber", "params": [], "id":1}' localhost:854
- It should return something like this (depending on how far your turbo-geth node has synced):
{"jsonrpc":"2.0","id":1,"result":823909}