Giter Club home page Giter Club logo

shyftnetwork / go-empyrean Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ethereum/go-ethereum

11.0 11.0 7.0 147.85 MB

Official Go implementation of the Shyft protocol, based on Ethereum

Home Page: https://www.shyft.network

License: GNU Lesser General Public License v3.0

Makefile 0.10% Go 83.32% Shell 0.28% NSIS 0.19% Ruby 0.07% HTML 1.01% JavaScript 7.90% C 4.81% Assembly 0.27% C++ 0.78% M4 0.21% Python 0.30% Java 0.25% CSS 0.32% Dockerfile 0.04% Solidity 0.15%

go-empyrean's People

Contributors

acud avatar arachnid avatar chris-shyft avatar chrisfenos avatar cjentzsch avatar cubedro avatar dbkbali avatar debris avatar dutterbutter avatar egonelbre avatar fjl avatar gavofyork avatar gballet avatar gluk256 avatar gregthegreek avatar holiman avatar janos avatar jpeletier avatar jsvisa avatar karalabe avatar kielbarry avatar nonsense avatar obscuren avatar priom avatar rjl493456442 avatar tgerring avatar twpostm avatar vbuterin avatar zelig avatar zsfelfoldi avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

go-empyrean's Issues

Readme Notes

Just some notes from trying the README.md (Docker Images) on the rollback-dev branch, some are burning issues, others are mere suggestions:

  • Missing --reset flag in ./shyft-geth.sh # clears persisted directories prior to docker build

  • Ordering of docker-compose up and docker-compose up --build is confusing. Seems --build should be shown first and an explanation should be bolded. Use of the terms reinitialize/rebuild does not imply this needs to be run upon first setup.

  • Docker Block Explorer -> Format user, password, DB fields in a more readable way (perhaps block comment using >)

  • Invalid formatting at _The Postgres Database... under Docker Block Explorer Api

  • Include list of services for the To rebuild any one of the services...

May add more as I go.

Example - Favicon is stretched

This is an example task.

To start adding new bugs to this project, duplicate this task:

  • [DUPLICATE ME] To add a new bug

Restart of Nodes Required for Smart Contract Authentication of Rollback Message

  • For the rollback endpoint's smart contract authentication to be operational, these are the current requirements:
  1. config.toml should contain the smart contract address of the smart contract responsible for authenticating the signers of broadcasters of whisper rollback messages:

  2. if this contract doesn't exist at node bootup the node will ignore rollback messages (unless geth is booted with the whisperkeys flag with a string list of public keys of the whisper signers)

This may not be practical given that all nodes will need to be restarted, once the whisper signers contract is actually deployed.

To remove the requirement of nodes having to restart for smart contract authentication to occur, the algorithm can be amended so that smart contract existence is checked as a first step whenever a rollback message is received as opposed to on node startup.

Failing Tests

This is directly related to PR #118

Tests have been updated and are green with a few exceptions:

Skipping tests in ./console directory --> Still trying to diagnosis the issue
Skipping tests in peer_test.go --> Still trying to diagnosis the issue
Skipping test testGetCHTProofs in handler_test.go --> Still trying to diagnosis the issue

Postgres authentication issue

System information

(Development branch)

Geth
Version: 1.8.3-unstable
Git Commit: fca85ebb8ac1a3f49e28f92535ff9c64d6ea0cf1
Architecture: amd64
Protocol Versions: [63 62]
Network Id: 1
Go Version: go1.10
Operating System: linux
GOPATH=
GOROOT=/usr/local/go

Expected behaviour

Geth should succesfully start.

Actual behaviour

Errors on postgres authentication:

david:~/go/src/github.com/ShyftNetwork/go-empyrean$ sudo ./shyft-geth.sh --start

INFO [10-03|14:37:42] Maximum peer count                       ETH=25 LES=0 total=25
INFO [10-03|14:37:42] Starting peer-to-peer node               instance=Geth/ShyftTestnetNode/v1.8.3-unstable-fca85ebb/linux-amd64/go1.10
INFO [10-03|14:37:42] Allocated cache and file handles         database=/home/david/go/src/github.com/ShyftNetwork/go-empyrean/shyftData/geth/chaindata cache=768 handles=512
INFO [10-03|14:37:42] Writing default main-net genesis block 
INFO [10-03|14:37:42] Persisted trie from memory database      nodes=12356 size=2.34mB time=37.196594ms gcnodes=0 gcsize=0.00B gctime=0s livenodes=1 livesize=0.00B
ERROR OPENING DB, NOT INITIALIZING
panic: pq: password authentication failed for user "postgres"

goroutine 1 [running]:
github.com/ShyftNetwork/go-empyrean/core.Connect(0xf9d178, 0x2c, 0x50)
	/home/david/go/src/github.com/ShyftNetwork/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/core/db.go:52 +0x11c
github.com/ShyftNetwork/go-empyrean/core.DbExists(0xf7470e, 0x7, 0xf72f92, 0x6, 0x1bb81e0)
	/home/david/go/src/github.com/ShyftNetwork/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/core/db.go:114 +0x39
github.com/ShyftNetwork/go-empyrean/core.InitDB(0x1, 0xdc09e0, 0xc42026c101)
	/home/david/go/src/github.com/ShyftNetwork/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/core/db.go:31 +0x81
github.com/ShyftNetwork/go-empyrean/core.DBConnection(0xdc09e0, 0xc430fb9c2c, 0xc42050a2c8)
	/home/david/go/src/github.com/ShyftNetwork/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/core/db.go:134 +0x62
github.com/ShyftNetwork/go-empyrean/core.BlockExists(0xc42026c1e0, 0x42, 0xe6346a90d018a145)
	/home/david/go/src/github.com/ShyftNetwork/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/core/shyft_database_util.go:209 +0x4e
github.com/ShyftNetwork/go-empyrean/core.SetupGenesisBlock(0x11095c0, 0xc42039c090, 0xc4202df080, 0xc42039c090, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0)
	/home/david/go/src/github.com/ShyftNetwork/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/core/genesis.go:266 +0x24e
github.com/ShyftNetwork/go-empyrean/eth.New(0xc42000c720, 0xc420511800, 0xf22f60, 0xc42050f838, 0x426568)
	/home/david/go/src/github.com/ShyftNetwork/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/eth/backend.go:148 +0x133
github.com/ShyftNetwork/go-empyrean/cmd/utils.RegisterEthService.func2(0xc42000c720, 0xc420520270, 0xc42050fb28, 0xc42000c6e0, 0x2)
	/home/david/go/src/github.com/ShyftNetwork/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/cmd/utils/flags.go:1136 +0x3d
github.com/ShyftNetwork/go-empyrean/node.(*Node).Start(0xc420385b80, 0x0, 0x0)
	/home/david/go/src/github.com/ShyftNetwork/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/node/node.go:182 +0x42c
github.com/ShyftNetwork/go-empyrean/cmd/utils.StartNode(0xc420385b80)
	/home/david/go/src/github.com/ShyftNetwork/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/cmd/utils/cmd.go:63 +0x2f
main.startNode(0xc4202a4840, 0xc420385b80)
	/home/david/go/src/github.com/ShyftNetwork/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/cmd/geth/main.go:230 +0x43
main.geth(0xc4202a4840, 0x10039f8, 0xb2d05e00)
	/home/david/go/src/github.com/ShyftNetwork/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/cmd/geth/main.go:220 +0x43
github.com/ShyftNetwork/go-empyrean/vendor/gopkg.in/urfave/cli%2ev1.HandleAction(0xde7900, 0x1004f38, 0xc4202a4840, 0xc4202a4840, 0xc42050ff48)
	/home/david/go/src/github.com/ShyftNetwork/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/vendor/gopkg.in/urfave/cli.v1/app.go:490 +0xc8
github.com/ShyftNetwork/go-empyrean/vendor/gopkg.in/urfave/cli%2ev1.(*App).Run(0xc42023a340, 0xc4200ca000, 0x11, 0x12, 0x0, 0x0)
	/home/david/go/src/github.com/ShyftNetwork/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/vendor/gopkg.in/urfave/cli.v1/app.go:264 +0x5ee
main.main()
	/home/david/go/src/github.com/ShyftNetwork/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/cmd/geth/main.go:209 +0x55

Steps to reproduce the behaviour

  1. Clone repo
  2. Start postgres
  3. ./shyft-geth --setup
  4. ./shyft-geth --start

(NOTE: Running ./shyft-geth.sh --start a second time Geth starts successfully)

Restarting a non-mining node gives error when syncing with a mining node

Hi Team,

When you stop and start a non-mining node, as soon as it starts syncing blockchain with other mining nodes, it reports error below. Possible reason: it tries to write a duplicate block into pg database

panic: pq: duplicate key value violates unique constraint "blocks_pkey"

System information
Geth version: shyftgeth version 1.8.3
OS & Version: Ubuntu

Expected behaviour
The non-mining node resumes block synchronization normally.

Actual behaviour
shyftgeth crashes from pg panic

Backtrace
INFO [09-11|18:22:14] Maximum peer count ETH=25 LES=0 total=25
INFO [09-11|18:22:14] Allocated cache and file handles database=/go/src/ShyftNetwork/go-empyrean/shyftData/geth/chaindata cache=16 handles=16
INFO [09-11|18:22:14] Persisted trie from memory database nodes=6 size=1.21kB time=14.365µs gcnodes=0 gcsize=0.00B gctime=0s livenodes=1 livesize=0.00B
INFO [09-11|18:22:14] Successfully wrote genesis state database=chaindata hash=fa0194…2dafd4
INFO [09-11|18:22:14] Allocated cache and file handles database=/go/src/ShyftNetwork/go-empyrean/shyftData/geth/lightchaindata cache=16 handles=16
INFO [09-11|18:22:14] Persisted trie from memory database nodes=6 size=1.21kB time=12.77µs gcnodes=0 gcsize=0.00B gctime=0s livenodes=1 livesize=0.00B
INFO [09-11|18:22:14] Successfully wrote genesis state database=lightchaindata hash=fa0194…2dafd4

INFO [09-11|18:22:14] Maximum peer count ETH=25 LES=0 total=25
INFO [09-11|18:22:14] Starting peer-to-peer node instance=Geth/ShyftTestnetNode/v1.8.3-unstable-9fbf5f05/linux-amd64/go1.10.3
INFO [09-11|18:22:14] Allocated cache and file handles database=/go/src/ShyftNetwork/go-empyrean/shyftData/geth/chaindata cache=768 handles=1024
INFO [09-11|18:22:14] Initialised chain configuration config="{ChainID: 2147483647 Homestead: 1 DAO: DAOSupport: false EIP150: 2 EIP155: 3 EIP158: 3 Byzantium: 4 Constantinople: Engine: 1}%!(EXTRA params.EthashConfig=ethash)"
WARN [09-11|18:22:14] Ethash used in POW
INFO [09-11|18:22:14] Disk storage enabled for ethash caches dir=/go/src/ShyftNetwork/go-empyrean/shyftData/geth/ethash count=3
INFO [09-11|18:22:14] Disk storage enabled for ethash DAGs dir=./ethash/.ethash count=2
18000000000
INFO [09-11|18:22:14] Initialising Ethereum protocol versions="[63 62]" network=2147483647
WARN [09-11|18:22:14] Head state missing, repairing chain number=94480 hash=df798a…7298c2
INFO [09-11|18:22:17] Rewound blockchain to past state number=2 hash=da3641…798fa1
INFO [09-11|18:22:17] Loaded most recent local header number=94480 hash=df798a…7298c2 td=48891196144
INFO [09-11|18:22:17] Loaded most recent local full block number=2 hash=da3641…798fa1 td=266304
INFO [09-11|18:22:17] Loaded most recent local fast block number=94480 hash=df798a…7298c2 td=48891196144
INFO [09-11|18:22:17] Loaded local transaction journal transactions=0 dropped=0
INFO [09-11|18:22:17] Regenerated local transaction journal transactions=0 accounts=0
WARN [09-11|18:22:17] Blockchain not empty, fast sync disabled
INFO [09-11|18:22:17] Starting P2P networking
INFO [09-11|18:22:19] UDP listener up self=enode://db9636cf1e8a61c0d55301f4f92b49576f48bc793b87bc23acb2b95a1bfe3ba4404f8ca5ef8fe7539a587bdcecbec72aacfc3c067d426b488ede0afec291a225@[::]:31333
INFO [09-11|18:22:19] HTTP endpoint opened url=http://0.0.0.0:8545 cors=
vhosts=localhost
INFO [09-11|18:22:19] WebSocket endpoint opened url=ws://[::]:8546
INFO [09-11|18:22:19] RLPx listener up self=enode://db9636cf1e8a61c0d55301f4f92b49576f48bc793b87bc23acb2b95a1bfe3ba4404f8ca5ef8fe7539a587bdcecbec72aacfc3c067d426b488ede0afec291a225@[::]:31333
INFO [09-11|18:22:19] IPC endpoint opened url=/go/src/ShyftNetwork/go-empyrean/shyftData/geth.ipc
INFO [09-11|18:23:19] Block synchronisation started
panic: pq: duplicate key value violates unique constraint "blocks_pkey"

goroutine 5402 [running]:
github.com/ShyftNetwork/go-empyrean/core.InsertBlock(0xc43ef44a00, 0xc43f116690, 0x42, 0xc43f184a50, 0x2a, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/core/shyft_database_util.go:416 +0x49e
github.com/ShyftNetwork/go-empyrean/core.SWriteBlock(0xc43ef20ea0, 0x0, 0x0, 0x0, 0x400748734583b962, 0x6aa273ad681a3271)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/core/shyft_database_util.go:130 +0x7b1
github.com/ShyftNetwork/go-empyrean/core.(*BlockChain).WriteBlockWithState(0xc4202a4000, 0xc43ef20ea0, 0x0, 0x0, 0x0, 0xc43ef51950, 0x2, 0x0, 0x0)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/core/blockchain.go:1005 +0xe3d
github.com/ShyftNetwork/go-empyrean/core.(*BlockChain).insertChain(0xc4202a4000, 0xc43f0b0240, 0x41, 0x41, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/core/blockchain.go:1174 +0x16fa
github.com/ShyftNetwork/go-empyrean/core.(*BlockChain).InsertChain(0xc4202a4000, 0xc43f0b0240, 0x41, 0x41, 0x0, 0x0, 0x0)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/core/blockchain.go:1019 +0x67
github.com/ShyftNetwork/go-empyrean/eth/downloader.(*Downloader).importBlockResults(0xc4201efc80, 0xc43f0b0000, 0x41, 0x41, 0x41, 0x9b331e8df5e3c700)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/eth/downloader/downloader.go:1354 +0x431
github.com/ShyftNetwork/go-empyrean/eth/downloader.(*Downloader).processFullSyncContent(0xc4201efc80, 0xb7b8fc56f3384ea9, 0xc43d972798)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/eth/downloader/downloader.go:1328 +0x79
github.com/ShyftNetwork/go-empyrean/eth/downloader.(*Downloader).(github.com/ShyftNetwork/go-empyrean/eth/downloader.processFullSyncContent)-fm(0x627c55fa00000008, 0xfd23a0)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/eth/downloader/downloader.go:471 +0x2a
github.com/ShyftNetwork/go-empyrean/eth/downloader.(*Downloader).spawnSync.func1(0xc43ede0930, 0xc43ed5b380, 0xc43ecad500)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/eth/downloader/downloader.go:484 +0x51
created by github.com/ShyftNetwork/go-empyrean/eth/downloader.(*Downloader).spawnSync
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/eth/downloader/downloader.go:484 +0xc3

@dbkbali @GregTheGreek @priom @dutterbutter @strangepowers @chris-shyft

seemlingly random transactions from first default account being created for no apparent reason

System information

OS & Version: Linux Ubuntu 16.04.5 LTS
Geth version 1.8.16

Expected behaviour

I would expect there to be no transactions, since I am not creating any.

Actual behaviour

There is a constant stream of transactions coming from the first default account

Steps to reproduce the behaviour

Just using the block explorer seems to do this. Is it triggering a test for some reason?
screen shot 2018-10-17 at 7 01 03 pm

should target gas price

--targetgaslimit 8000000

in startShyftGeth.sh for both paths is useful so the gas won't be optimized downwards if a node is running for an extended period of time

Block Explorer UI only displays records when accessing from localhost

Hi Team,

When accessing from outside the server itself, the Block Explorer UI does not connect to the Block Explorer API correctly.

System information

Geth version: shyftgeth 1.8.3
OS & Version: Ubuntu 16.04

Expected behaviour

The Block Explorer UI should display records about transactions, accounts, and blocks.

Actual behaviour

The Block Explorer UI displays empty records.

Steps to reproduce the behaviour

clone the repo
docker-compose up -d
access block explorer ui using a browser not on the server itself

Backtrace

WebSocket connection to 'ws://ec2-18-204-231-31.compute-1.amazonaws.com/sockjs-node/988/3qcqilyg/websocket' failed: Error during WebSocket handshake: Unexpected response code: 400
WebSocketBrowserDriver @ websocket.js:6
WebSocketTransport @ websocket.js:32
./node_modules/sockjs-client/lib/main.js.SockJS._connect @ main.js:219
./node_modules/sockjs-client/lib/main.js.SockJS._receiveInfo @ main.js:193
g @ emitter.js:30
./node_modules/sockjs-client/lib/event/emitter.js.EventEmitter.emit @ emitter.js:50
(anonymous) @ info-receiver.js:67
g @ emitter.js:30
./node_modules/sockjs-client/lib/event/emitter.js.EventEmitter.emit @ emitter.js:50
(anonymous) @ info-ajax.js:37
g @ emitter.js:30
./node_modules/sockjs-client/lib/event/emitter.js.EventEmitter.emit @ emitter.js:50
xhr.onreadystatechange @ abstract-xhr.js:124

@GregTheGreek @dbkbali @dutterbutter @strangepowers @chris-shyft @priom

"Error: invalid merkle root" while running clique POA network

Your Environment

  • Geth Version: v1.9.0-unstable
  • OS: Ubuntu 16.04

Expected Behavior

During the block syncing process among nodes, the incoming remote block hash should match local block hash, and remote block should be accepted by the local node.

Current Behavior

After a sealer has sealed Block 1121, every other node inside the network reports "Error: invalid merkle root" which means the remote block hash does not match local block hash, and subsequently reports "ERROR: ########## BAD BLOCK #########" and rejects the incoming remote block.

Blockchain stalls at height 1120/1121, with the single active sealer at 1 block ahead of every other node. Block 1121 is rejected by every other node inside the network.

Possible Solution

The Geth community have reported the same issue under similar setups (Geth with clique POA). However, no clear solution was provided.
ethereum#15504
ethereum#17513

Fusion Protocol, a project which derives its codebase from Geth, reported the same issue, and attributed to two possible causes:

  1. Low memory machines (4GB) regularly crashing.
    https://medium.com/@fusionprotocol/fusion-technical-team-update-monitoring-testing-and-improving-40789dbd0973
  2. Certain fields that were dependent on time was using the local computer’s time vs the block time which would be the same for all computers, causing block hash to be calculated differently.
    https://medium.com/@fusionprotocol/fusion-psn-technical-update-2-0-654115256856

A combination of the two above may have caused the error. It could be helpful to run sealer nodes in higher memory machines (>4GB), and investigate local computer time discrepancy.

Update: after discussion with Dustin, we believe the error is due to a node not able to commit in time.

Possible explanation:
the sequence of producing a block:

writeBlock => trieDB
roothash.commit (dependent on local system timestamp)
sWriteBlock => pg (in a for loop)

When there are too many tx in a block, the above process could take >15s to finish. The sealer node which is supposed to commit at say, 00:00:15, actually commits at 00:00:16, and that produces a different merkle root hash.

Possible Fix:
put sWriteBlock inside a goroutine to run parallel to the main proces

Steps to Reproduce (for bugs)

  1. Run a Shyftgeth network with clique POA.
  2. Send a large number of tx in a short time period.
  3. Sealer may produce a BAD BLOCK which is rejected by every other node.

Context

The error happened when running a stress test on the POA network. It happened several times when sending a large number of transactions to transaction nodes.

Note: the sealer had --txpool.accountslots set to 100 from default 16

Logs

on the active sealer node:
INFO [01-25|19:36:08.893] Commit new mining work number=1111 sealhash=605587…f1c9a5 uncles=0 txs=0 gas=0 fees=0 elapsed=493.192µs
INFO [01-25|19:36:08.899] Successfully sealed new block number=1111 sealhash=605587…f1c9a5 hash=c1cbfd…73b518 elapsed=5.764ms
INFO [01-25|19:36:08.899] 🔨 mined potential block number=1111 hash=c1cbfd…73b518
INFO [01-25|19:36:08.900] Commit new mining work number=1112 sealhash=580d3d…fc6642 uncles=0 txs=0 gas=0 fees=0 elapsed=383.189µs
INFO [01-25|19:36:08.900] Signed recently, must wait for others
WARN [01-25|19:36:30.359] Failed to decode stats server message err="json: cannot unmarshal string into Go value of type map[string][]interface {}"
WARN [01-25|19:36:31.412] Full stats report failed err="write tcp 172.27.0.4:59504->142.93.147.87:3000: use of closed network connection"
INFO [01-25|19:36:37.312] Imported new chain segment blocks=1 txs=418 mgas=8.778 elapsed=6.664s mgasps=1.317 number=1112 hash=0446af…ca0e5c cache=0.00B
INFO [01-25|19:36:37.312] Commit new mining work number=1113 sealhash=c3378c…5e0c7d uncles=0 txs=0 gas=0 fees=0 elapsed=128.235µs
INFO [01-25|19:36:38.006] Successfully sealed new block number=1113 sealhash=c3378c…5e0c7d hash=ac1727…472625 elapsed=693.210ms
INFO [01-25|19:36:38.006] 🔨 mined potential block number=1113 hash=ac1727…472625
INFO [01-25|19:36:38.007] Commit new mining work number=1114 sealhash=281751…334490 uncles=0 txs=0 gas=0 fees=0 elapsed=230.312µs
INFO [01-25|19:36:38.007] Signed recently, must wait for others
WARN [01-25|19:37:00.413] Failed to decode stats server message err="json: cannot unmarshal string into Go value of type map[string][]interface {}"
WARN [01-25|19:37:01.418] Full stats report failed err="write tcp 172.27.0.4:59558->142.93.147.87:3000: use of closed network connection"
INFO [01-25|19:37:08.007] Imported new chain segment blocks=1 txs=398 mgas=8.358 elapsed=7.675s mgasps=1.089 number=1114 hash=9d4680…6d208c cache=0.00B
INFO [01-25|19:37:08.008] Commit new mining work number=1115 sealhash=ba6d56…fddbc8 uncles=0 txs=0 gas=0 fees=0 elapsed=272.148µs
INFO [01-25|19:37:08.016] Successfully sealed new block number=1115 sealhash=ba6d56…fddbc8 hash=c6fd6e…39e78f elapsed=8.296ms
INFO [01-25|19:37:08.016] 🔨 mined potential block number=1115 hash=c6fd6e…39e78f
INFO [01-25|19:37:08.017] Commit new mining work number=1116 sealhash=c62061…f60f1b uncles=0 txs=0 gas=0 fees=0 elapsed=685.3µs
INFO [01-25|19:37:08.017] Signed recently, must wait for others
INFO [01-25|19:37:23.036] Imported new chain segment blocks=1 txs=0 mgas=0.000 elapsed=8.140ms mgasps=0.000 number=1116 hash=de52f2…007669 cache=0.00B
INFO [01-25|19:37:23.036] Commit new mining work number=1117 sealhash=7472c8…9e4f94 uncles=0 txs=0 gas=0 fees=0 elapsed=146.541µs
WARN [01-25|19:37:30.362] Failed to decode stats server message err="json: cannot unmarshal string into Go value of type map[string][]interface {}"
WARN [01-25|19:37:31.425] Full stats report failed err="write tcp 172.27.0.4:59622->142.93.147.87:3000: use of closed network connection"
INFO [01-25|19:37:38.006] Successfully sealed new block number=1117 sealhash=7472c8…9e4f94 hash=e94135…164591 elapsed=14.969s
INFO [01-25|19:37:38.006] 🔨 mined potential block number=1117 hash=e94135…164591
INFO [01-25|19:37:38.007] Commit new mining work number=1118 sealhash=9e05d0…ea0e1a uncles=0 txs=0 gas=0 fees=0 elapsed=427.959µs
INFO [01-25|19:37:38.007] Signed recently, must wait for others
INFO [01-25|19:37:53.032] Imported new chain segment blocks=1 txs=0 mgas=0.000 elapsed=5.839ms mgasps=0.000 number=1118 hash=700814…2dea38 cache=0.00B
INFO [01-25|19:37:53.032] 🔗 block reached canonical chain number=1111 hash=c1cbfd…73b518
INFO [01-25|19:37:53.032] Commit new mining work number=1119 sealhash=0ae905…043c30 uncles=0 txs=0 gas=0 fees=0 elapsed=278.253µs
WARN [01-25|19:38:00.367] Failed to decode stats server message err="json: cannot unmarshal string into Go value of type map[string][]interface {}"
WARN [01-25|19:38:01.431] Full stats report failed err="write tcp 172.27.0.4:59682->142.93.147.87:3000: use of closed network connection"
INFO [01-25|19:38:08.006] Successfully sealed new block number=1119 sealhash=0ae905…043c30 hash=f26fad…1c256c elapsed=14.973s
INFO [01-25|19:38:08.006] 🔨 mined potential block number=1119 hash=f26fad…1c256c
INFO [01-25|19:38:08.007] Commit new mining work number=1120 sealhash=424d4b…b4abcd uncles=0 txs=0 gas=0 fees=0 elapsed=582.912µs
INFO [01-25|19:38:08.007] Signed recently, must wait for others
INFO [01-25|19:38:23.031] Imported new chain segment blocks=1 txs=0 mgas=0.000 elapsed=5.565ms mgasps=0.000 number=1120 hash=aa0e94…68beb1 cache=0.00B
INFO [01-25|19:38:23.031] 🔗 block reached canonical chain number=1113 hash=ac1727…472625
INFO [01-25|19:38:23.031] Commit new mining work number=1121 sealhash=372f5f…0b3bb4 uncles=0 txs=0 gas=0 fees=0 elapsed=237.626µs
INFO [01-25|19:38:29.036] Commit new mining work number=1121 sealhash=69852d…fd685c uncles=0 txs=26 gas=546000 fees=0.009828 elapsed=4.617ms
WARN [01-25|19:38:30.368] Failed to decode stats server message err="json: cannot unmarshal string into Go value of type map[string][]interface {}"
WARN [01-25|19:38:30.439] Transaction stats report failed err="write tcp 172.27.0.4:59744->142.93.147.87:3000: use of closed network connection"
INFO [01-25|19:38:32.041] Commit new mining work number=1121 sealhash=561274…b38294 uncles=0 txs=100 gas=2100000 fees=0.0378 elapsed=9.293ms
INFO [01-25|19:38:39.399] Successfully sealed new block number=1121 sealhash=561274…b38294 hash=d6acf1…0a7bf7 elapsed=7.358s
INFO [01-25|19:38:39.399] 🔨 mined potential block number=1121 hash=d6acf1…0a7bf7
INFO [01-25|19:38:39.401] Commit new mining work number=1122 sealhash=31fd41…61f38d uncles=0 txs=0 gas=0 fees=0 elapsed=821.669µs
INFO [01-25|19:38:39.401] Signed recently, must wait for others
INFO [01-25|19:38:39.434] Commit new mining work number=1122 sealhash=31fd41…61f38d uncles=0 txs=0 gas=0 fees=0 elapsed=34.010ms
WARN [01-25|19:39:00.373] Failed to decode stats server message err="json: cannot unmarshal string into Go value of type map[string][]interface {}"
WARN [01-25|19:39:00.445] Full stats report failed err="write tcp 172.27.0.4:59800->142.93.147.87:3000: use of closed network connection"
WARN [01-25|19:39:30.379] Failed to decode stats server message err="json: cannot unmarshal string into Go value of type map[string][]interface {}"
WARN [01-25|19:39:30.450] Full stats report failed err="write tcp 172.27.0.4:59858->142.93.147.87:3000: use of closed network connection"

On a syncing node:
WARN [01-25|19:38:00.383] Failed to decode stats server message err="json: cannot unmarshal string into Go value of type map[string][]interface {}"
WARN [01-25|19:38:00.825] Full stats report failed err="write tcp 10.142.0.10:40336->142.93.147.87:3000: use of closed network connection"
INFO [01-25|19:38:08.032] Imported new chain segment blocks=1 txs=0 mgas=0.000 elapsed=514.877µs mgasps=0.000 number=1119 hash=f26fad…1c256c cache=690.70kB
INFO [01-25|19:38:23.036] Imported new chain segment blocks=1 txs=0 mgas=0.000 elapsed=456.638µs mgasps=0.000 number=1120 hash=aa0e94…68beb1 cache=690.70kB
INFO [01-25|19:38:28.450] Submitted transaction fullhash=0xf3593353b5c19b568534648aa8aae4abcdcf192b1becd4c6a0a6af6517ae3fad recipient=0x7fA114A5fDAf37f5D23f10FE7d87FfB6158e5471
INFO [01-25|19:38:28.628] Submitted transaction fullhash=0xc16dbadfdcc237b01f60568168901b299a4ac78f0bcfb0e2775afbe874a3a94e recipient=0x7A494103e3CD34a5cD8E386bC65E015917D3Ee0C
INFO [01-25|19:38:29.163] Submitted transaction fullhash=0x0c5b0b917e504945197451bdac5407002450ebe96f2dd1908c835e5705786d43 recipient=0xC459f7444b0a7cfBe7ECCa7A22aF3cdcCcB2EC68
INFO [01-25|19:38:29.266] Submitted transaction fullhash=0x132498a861b5b8df97ee279b5c9a0e45e32583d481c36a869d5d51a4993d9ce2 recipient=0x2920F543611A2743AD9B33d5FCa56d2369bCE542
INFO [01-25|19:38:29.291] Submitted transaction fullhash=0xb910fc6433de4c86fedcc620e2be4d058396cb03678acfcdb076677857b0f425 recipient=0x71a14B84C8087229217287440Bd13173dD0411Fd
INFO [01-25|19:38:29.318] Submitted transaction fullhash=0x604a96277639812a683b9d45b148d72af70f67d0892a6355e3751185907964d2 recipient=0x1a209466e1d29A46e8F2D5532891C8B0f4147365
INFO [01-25|19:38:29.344] Submitted transaction fullhash=0x55c27517133958712cd2675d759d3f83a13ef93d73b40cc32cf99c9ba26af184 recipient=0x2D2A02Cc4692f7f7Cdb92763Ee7ad488B8Ea362D
INFO [01-25|19:38:29.497] Submitted transaction fullhash=0x2d36611474f78c7ee94a94f0a65d9eb12d57c3650ec22eb09834d4c0d76a95a1 recipient=0x11C3FdBbBBA202b6B26474F7d10E725477c69afE
INFO [01-25|19:38:29.547] Submitted transaction fullhash=0xbc758c3720a1808364bad1c65e43678d8ab00c5c6082bccefb4659b71a4f447c recipient=0x80b5eE5925Ee36B30f117F09f964723A3a142E0a
INFO [01-25|19:38:29.573] Submitted transaction fullhash=0x35b8b5141400674e68ec9727a3b84082bea296617b9bdb2c364d5ee78ec66043 recipient=0x36905df5cA99989cb616b2652d57C937aDf6E544
INFO [01-25|19:38:29.600] Submitted transaction fullhash=0xab3f3f08c5a82b90f28e2c3f248654f1cd1d4328c67dfc6d872e7614636bc0c9 recipient=0xa428f40F832589d40b2573Cd793fDb64B7Be9309
INFO [01-25|19:38:29.625] Submitted transaction fullhash=0x1e471259fb2f3b49b096d5b86ad7fc4c4ab0940dfc9874c0381f6afcabf62395 recipient=0x2747A9ba53ABC36A6903a36F1F644512694d18B9
INFO [01-25|19:38:29.704] Submitted transaction fullhash=0x2fb4d5f3b1e9aacae57c423ffea732f94b903d229f5d606097bb22f24e6c3d54 recipient=0x99407b4F5Ee092376CeEec48933D02572FBA772A
INFO [01-25|19:38:29.908] Submitted transaction fullhash=0x1806bdb5630acade062b49a7356d39e9a3af9e20cb035e78570a86e651858bb5 recipient=0xc10c1bB25632b870332Be7E55f72A4aC21575255
INFO [01-25|19:38:30.035] Submitted transaction fullhash=0x2cc0f0405cd7b5092d27c5e923b347289c97a4262346ef3d87725a0edca3b7ad recipient=0x4bAB03598Ce86ba6C6bcb0Bc149158E0DB45dBFd
INFO [01-25|19:38:30.186] Submitted transaction fullhash=0xd041dcb61e498420c149d657a6bcd8ef44171891cca480edfdadcb40fd46cb29 recipient=0x10bfc5B650bc662DF987B083bfE672B5da9FDBa0
INFO [01-25|19:38:30.287] Submitted transaction fullhash=0x79cebd53ae7215892feb5e40b1314ca6aae043fae27382699edd6404fe76c564 recipient=0xE13C704A21E6493185fd2AF02e56fb7405E10B75
INFO [01-25|19:38:30.338] Submitted transaction fullhash=0x9172d41e90e196c518c33321aef03af3efabc8defafe2776d328b1c60876a28c recipient=0x017c6DB9C39Baf5c84593C5589781B2baDd48a21
WARN [01-25|19:38:30.383] Failed to decode stats server message err="json: cannot unmarshal string into Go value of type map[string][]interface {}"
INFO [01-25|19:38:30.389] Submitted transaction fullhash=0x91bd355e171eb6ff8e3f8bcecdd452ecb14560d7d9dacaeb4a31c6d6bf5c8072 recipient=0xF7029d39000E61AdAC25EE18F6664D646d0B9285
INFO [01-25|19:38:30.439] Submitted transaction fullhash=0x0f7d0d5a8f191aef7cbb04bc984c6a40634dd2a3e4f2ea7de2fa641f845958c8 recipient=0x61C5D4bD2bFfc2F0d42224E5a8eaB8e6bfE4B068
WARN [01-25|19:38:30.440] Transaction stats report failed err="write tcp 10.142.0.10:40446->142.93.147.87:3000: use of closed network connection"
INFO [01-25|19:38:30.465] Submitted transaction fullhash=0xd052f2b4fd0197580d0949f82f38aee7c88f8b677920286252bdfdfb06ad9f41 recipient=0xEbe65Ab6dC11fEDD0f1DeD690000156884Dd752b
INFO [01-25|19:38:30.515] Submitted transaction fullhash=0xd45d9606248f2f9f3a065b86b177e12d62b218878ff4d420f1e103593c77beb4 recipient=0xF930A1EA81168bb013CddF9217E2f94967aA9947
INFO [01-25|19:38:30.618] Submitted transaction fullhash=0x5b03271be4e67e9e47a938d8d0a042ee4a11907a14040c086ebb447d0e71f01b recipient=0x495B76cCc20557986736402309C75dF0C9342c90
INFO [01-25|19:38:30.643] Submitted transaction fullhash=0x3fb89bf6bb96c1277ce235f54292f6529f2f67afad287cd0f4dcb0a43c2c77ac recipient=0x3fD14c12558e919Db01a4CB71be3c911995ed900
INFO [01-25|19:38:30.745] Submitted transaction fullhash=0x219c7fec9cba5a4895d3c86be9aa02481e9817ca86f199e9b42d21804ba559c6 recipient=0xb24152800d0E1B5da462aF10A7B5B2BF49291F96
INFO [01-25|19:38:30.795] Submitted transaction fullhash=0xa83a085ffd8c97fe0f50840e60ba4b9364e196ebc29cbbf58775973342792f39 recipient=0x8bD66b0Ae74122950A7d55188A4BA251d71C1506
INFO [01-25|19:38:30.873] Submitted transaction fullhash=0x0c5ac234bce5dfc67514de3c16ede1cfb48b92f489c2bafd6120fe3a6222f97c recipient=0xbcE10FC7FD49D38C42b69d4f479D9eC10be814B1
ERROR[01-25|19:38:39.535]
########## BAD BLOCK #########
Chain config: {ChainID: 36611 Homestead: 1 DAO: DAOSupport: false EIP150: 2 EIP155: 3 EIP158: 3 Byzantium: 4 Constantinople: ShyftNetwork: Engine: clique}

Number: 1121
Hash: 0xd6acf12e0d2c2f433dac24817ae4382134784476a2fcc51a6c4586fe750a7bf7
0: cumulative: 21000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x18add722f414299244942ea5c579ef89e650aecbe27b8e6f7f319ea34f15d67a logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
1: cumulative: 42000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x8cbc4668141d75920d8832a0578966ed5b70debf5ba1779166516e96358417a6 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
2: cumulative: 63000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x335ef71f266309899a313533d9ba846785c0fe210d5195831f574217544c0fdf logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
3: cumulative: 84000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xf3593353b5c19b568534648aa8aae4abcdcf192b1becd4c6a0a6af6517ae3fad logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
4: cumulative: 105000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x497393c8679d2679498d9bb8edd5860f19be9416547da564768e18247078dff6 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
5: cumulative: 126000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xf7ccc801cffa55267fefd8e77bc46683786f810d91764ecc9cebe0bc0172c28f logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
6: cumulative: 147000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x0b023a59be3ebd88d48c77b72b13d98ffe79567a4d25e4a27bbf7d42c00f3b9f logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
7: cumulative: 168000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xb9a6d9607e68223de6d0060925527d62602fb7517a64c096acf0751b24160951 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
8: cumulative: 189000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xeecbed625c74010976c887d158861d258c6466c9598bfe056195206b23adb49e logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
9: cumulative: 210000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x8bd6026baf6ad9b1c957f8076ff088ea951b19ba2b35f51f4400e45b3b86e1fe logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
10: cumulative: 231000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xc16dbadfdcc237b01f60568168901b299a4ac78f0bcfb0e2775afbe874a3a94e logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
11: cumulative: 252000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xd9f9d5b516632c84c8e8aeaeddb84329924ef54cab7b30c0b1de9b5486e9a8ce logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
12: cumulative: 273000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x007129f737b386dfe0f6f4a2f3e22c5a083e00f55097ef90330af885f371889e logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
13: cumulative: 294000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xa228fe90a80040a017f92603812e5aa31032f4973fbfa57cb308143575d36c79 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
14: cumulative: 315000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x003d00fa5f05c67bffc18518b03bba9f5003a8dfdec6f126edfe0c595746247b logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
15: cumulative: 336000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xc7b5b889533b16fb842a3f618d5c81f0735121c5f9bd3efbb80dbcfc9d527edb logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
16: cumulative: 357000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x5ecf342d50fe80aea7a20f3ebe47cab51b262019da3d22ca79a25a4f637fdaac logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
17: cumulative: 378000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x89cff0ae0ae506149dfbc84e3103e6cf40953b4c4022bc71e8716a5b50b8b9a6 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
18: cumulative: 399000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xe8ad970b6cc8e08bf3ad78fe3808704007a2875f5bd335e2b474b8d00993fc26 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
19: cumulative: 420000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xb6209fac3bf274284d4cb66db93005fdc775c7c401eb622bcbdd7184335ab41f logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
20: cumulative: 441000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xafe92d6ea7748855c9d086636aeae28af323064fae6f9111f7b5578f0c814cc1 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
21: cumulative: 462000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x9b987fa6f6798bec42b71145b27f39c581edf6135bb8ba0722ffd399cb3570e7 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
22: cumulative: 483000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x09fb35a04dbec49e33025367dc6b69f446b0321795eeb0994b06195215e6d02b logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
23: cumulative: 504000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xc1431da76b2441e1449a739c19c4fd6eb61594e47b94ae25ff9e1c27dedee2c6 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
24: cumulative: 525000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xf7332dddf950edffddf56a527dec43840d954d91170ad56470ec7ea0653d8a0f logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
25: cumulative: 546000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x1afaf28858fe882256cb09c9b4606197dc6845e7957b492f79ee5e1d301dc2a7 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
26: cumulative: 567000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x207fd4a91cbb71e63296763e78e9e77dc83d2f9bc1a0fcca1f4c32e0b600c91b logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
27: cumulative: 588000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xca2e048cf40efbeda534567d7ade4134b7d7f01ce9a68679c49b2fad6a689c35 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
28: cumulative: 609000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xb4a731e159dcd4c48236b5073750d2d633cc7690c14fdc23e347be4214573648 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
29: cumulative: 630000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xd20a7544baa5fd780db732a9696644adf4a322a5544461127efc9128668984f6 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
30: cumulative: 651000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x038bf3c2a3071f6960b55a5cb126c22e836c8c60fd6d09684117152193f8a391 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
31: cumulative: 672000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x0c5b0b917e504945197451bdac5407002450ebe96f2dd1908c835e5705786d43 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
32: cumulative: 693000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x5b1cf5f324e1a349c0bde7d2a7ee9fd104f717d4e5655ece84bd1400e42334ba logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
33: cumulative: 714000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x1691daaf9bfc1a712579ba16d6a473aa0869ec0498dd17af76dc2217f3e18ed5 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
34: cumulative: 735000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xb75eb82660444e181dede7cc8a7c77ab43af6b2ed808a7d019d656b466ad3c7a logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
35: cumulative: 756000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x132498a861b5b8df97ee279b5c9a0e45e32583d481c36a869d5d51a4993d9ce2 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
36: cumulative: 777000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xb910fc6433de4c86fedcc620e2be4d058396cb03678acfcdb076677857b0f425 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
37: cumulative: 798000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x604a96277639812a683b9d45b148d72af70f67d0892a6355e3751185907964d2 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
38: cumulative: 819000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x55c27517133958712cd2675d759d3f83a13ef93d73b40cc32cf99c9ba26af184 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
39: cumulative: 840000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x9416507bb9a69ff528f6a33444e624b0ed64dc15192aae1cc9c76b0dd5d7d3f4 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
40: cumulative: 861000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x348be42dba49f0cd5662ec244f25d192430cfb80140560fd40d605662e8693c9 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
41: cumulative: 882000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x6c176cf3c3a4c78ce2c60953c5e149e46591911f81ec48d8025397a0de6f2b89 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
42: cumulative: 903000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x25fbc33f9f8c2b607de345180b582c64ef5cf169345c83c825f070e8c650741f logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
43: cumulative: 924000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x76491a382ddbd0b81caf585b212903773680a2d60a5f04c1bebd943220f5a1af logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
44: cumulative: 945000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x2d36611474f78c7ee94a94f0a65d9eb12d57c3650ec22eb09834d4c0d76a95a1 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
45: cumulative: 966000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xe2be1c02154adb449f28da9e517cf6052714d3d9ee854e756d751c36c353e23c logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
46: cumulative: 987000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xbc758c3720a1808364bad1c65e43678d8ab00c5c6082bccefb4659b71a4f447c logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
47: cumulative: 1008000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x35b8b5141400674e68ec9727a3b84082bea296617b9bdb2c364d5ee78ec66043 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
48: cumulative: 1029000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xab3f3f08c5a82b90f28e2c3f248654f1cd1d4328c67dfc6d872e7614636bc0c9 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
49: cumulative: 1050000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x1e471259fb2f3b49b096d5b86ad7fc4c4ab0940dfc9874c0381f6afcabf62395 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
50: cumulative: 1071000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xba88bc8c87aabc3af9d385c053dec085bc1871eab187114a71f02d8e5482f765 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
51: cumulative: 1092000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x6d7376978bd85f816ae3631c4b8610730091c15958cad361fd75a09af731ca98 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
52: cumulative: 1113000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x2fb4d5f3b1e9aacae57c423ffea732f94b903d229f5d606097bb22f24e6c3d54 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
53: cumulative: 1134000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xc4a39c62c2446737d3c753115f0ce4edb2f51159c0417a4c51353264b5f07653 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
54: cumulative: 1155000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x19c2f0d39bde89cd9c68a301294b9fe883d60925710eb24cffe6cedb2267d21c logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
55: cumulative: 1176000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x68e47b3207d3236334d5b5d82232a6e4f36f9e9b40005430afacf223623de788 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
56: cumulative: 1197000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x14bbcc3d56e4f0391dcf611f124be53e9d213b9d1629287fb179249dfacff411 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
57: cumulative: 1218000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x3673f817d01d0559937a8276e7a4e59b4864bc5b9cc4afc28486f5d8e262b690 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
58: cumulative: 1239000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x4c1c9b64282debf991748f32152bf0a89b8993390dde6ee548c248442e239249 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
59: cumulative: 1260000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x38a9672c8af7c7592f41df1dcf077304e33e8858be813ef18e12a1003f22a1bb logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
60: cumulative: 1281000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x1806bdb5630acade062b49a7356d39e9a3af9e20cb035e78570a86e651858bb5 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
61: cumulative: 1302000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x1f0a412c183abf591968280c040a2375043187eb2c47025d6a54b6cc4fd7549d logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
62: cumulative: 1323000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x596dac1657c84486a7c50bace0e293aafd90bfe674a7454852b0e1737ee0ffb5 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
63: cumulative: 1344000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x38e67bdec34258d90c93e18636bb5a544c602f244403f7bcd54e2a7eb0bd1edd logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
64: cumulative: 1365000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x1791f915ad0e62c19ca7da05d437e33bba1cb8844d55ff8606caa937b2a7a8d8 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
65: cumulative: 1386000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x2cc0f0405cd7b5092d27c5e923b347289c97a4262346ef3d87725a0edca3b7ad logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
66: cumulative: 1407000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x3426f7712e4cf8db9b688aba3dc98d273e75e26e0dc4b33d7506f9d3c7c0f568 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
67: cumulative: 1428000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x8a3e6afea3a68cd1be6ecbb223260f464a8efb3fa856d21e110fd716c3768299 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
68: cumulative: 1449000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x917d57c8ca25f947a5736644ce3c644bb3e2ca7ba94e158a0873947bf39a00ff logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
69: cumulative: 1470000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x5aa51591bb7aa3e17f45cf474f678891f1bbdca5bc9a921ce237a2e13b375c78 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
70: cumulative: 1491000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x2e2358be0d17e0222313e99e294b8e914e336e25c57c865af2bf3be319405247 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
71: cumulative: 1512000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xd041dcb61e498420c149d657a6bcd8ef44171891cca480edfdadcb40fd46cb29 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
72: cumulative: 1533000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x54f75495fa63bcb925ab798166f18369e0ed60fcb3fee3b4c91e00d2011b6cdc logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
73: cumulative: 1554000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x84077bca5c7c38b874adb3c8cc0c43b4e522dc13563ded523583012b60eab576 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
74: cumulative: 1575000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x04fffa9d81e85e3c722d3884b04ea72cc452edb7f39792c28ac1d124e7114220 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
75: cumulative: 1596000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x79cebd53ae7215892feb5e40b1314ca6aae043fae27382699edd6404fe76c564 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
76: cumulative: 1617000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xd1243f58d44d6778da9f08d52d6aafc65fd3cda190b7734add682b9e257b1a70 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
77: cumulative: 1638000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x9172d41e90e196c518c33321aef03af3efabc8defafe2776d328b1c60876a28c logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
78: cumulative: 1659000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xdfabcaa696ec47648929bb9bd7555ed1ca3166b1f9648ddd0b68a8736f2b1d39 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
79: cumulative: 1680000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x91bd355e171eb6ff8e3f8bcecdd452ecb14560d7d9dacaeb4a31c6d6bf5c8072 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
80: cumulative: 1701000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x71cdf18acac752d1ac27ed47732cc0a443f3171a4c6f1c5aec809df5f3fd158e logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
81: cumulative: 1722000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x0f7d0d5a8f191aef7cbb04bc984c6a40634dd2a3e4f2ea7de2fa641f845958c8 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
82: cumulative: 1743000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xd052f2b4fd0197580d0949f82f38aee7c88f8b677920286252bdfdfb06ad9f41 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
83: cumulative: 1764000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x015958f92abe15b8e814556c60f8cf340f5616da54fc2006a33170b211e28f9f logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
84: cumulative: 1785000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xd45d9606248f2f9f3a065b86b177e12d62b218878ff4d420f1e103593c77beb4 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
85: cumulative: 1806000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x928aa12270babf0567431dd29c72381fc852d1b7d845b601136d579e68c6f66c logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
86: cumulative: 1827000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xc2ab2a33527b1e7e41441ad7e420b83935c845f18a4dec3e9fd8654f83d7017d logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
87: cumulative: 1848000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xa38b79066569b9e241aef752bd051786c044dfdac80707c6e57174fcacea1c24 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
88: cumulative: 1869000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x5b03271be4e67e9e47a938d8d0a042ee4a11907a14040c086ebb447d0e71f01b logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
89: cumulative: 1890000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x3fb89bf6bb96c1277ce235f54292f6529f2f67afad287cd0f4dcb0a43c2c77ac logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
90: cumulative: 1911000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x195d82d8f28be6835d3b668f11da3751216cde1b3374eea6dc4145d0c1d73b57 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
91: cumulative: 1932000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x850f7c74747ba4d4bbe680b48cb353473d41e606fab68f302e369723f1c8d2bd logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
92: cumulative: 1953000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x43860fd63e9de14a697be22945b89c221968a3efcbb0b8548563320a05f97bfb logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
93: cumulative: 1974000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x219c7fec9cba5a4895d3c86be9aa02481e9817ca86f199e9b42d21804ba559c6 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
94: cumulative: 1995000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xe881eb7cb7700ebb94eef98c6f2a1de15ac3674bd1177239af7d8609bb7a4d05 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
95: cumulative: 2016000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xa83a085ffd8c97fe0f50840e60ba4b9364e196ebc29cbbf58775973342792f39 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
96: cumulative: 2037000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x24051090f9b006f97e31768879f9a7aae10fec67dc863d6e799c29418c7949df logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
97: cumulative: 2058000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x106bd5a65353cd084ad63b5c06720d0c6f488973481db43119583ef050ddfae3 logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
98: cumulative: 2079000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0x0c5ac234bce5dfc67514de3c16ede1cfb48b92f489c2bafd6120fe3a6222f97c logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:
99: cumulative: 2100000 gas: 21000 contract: 0x0000000000000000000000000000000000000000 status: 1 tx: 0xcbc79e46dafe107225fa2b9d3109ad009c5f5b128d309abacf94130b3a3fb4ab logs: [] bloom: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 state:

Error: invalid merkle root (remote: 8104d4d0c5bdfaa2a2b87eafd240df0919aeebaf23d2009522cf3ac5f5e780da local: b668f507e839d9e553f8fe96124aa340775308dad33c51ce5b5e2643a6ef1d9f)
##############################

WARN [01-25|19:39:00.391] Failed to decode stats server message err="json: cannot unmarshal string into Go value of type map[string][]interface {}"
WARN [01-25|19:39:00.581] Full stats report failed err="write tcp 10.142.0.10:40536->142.93.147.87:3000: use of closed network connection"
WARN [01-25|19:39:30.395] Failed to decode stats server message err="json: cannot unmarshal string into Go value of type map[string][]interface {}"
WARN [01-25|19:39:30.711] Full stats report failed

Local Postgres Setup Instructions (Ubuntu)

Below are proposed docs for running postgres locally on Ubuntu/Debian. Turned out simpler than expected but that might be a good point to highlight:

  1. Install postgres:
$ sudo apt update
$ sudo apt install postgresql

UI Error

Expected behaviour

Should not error when selecting account details

Actual behaviour

It errors out while selecting account details.

Steps to reproduce the behaviour

Go to this url and then select account address 0x9db76b4bbaea76dfda4552b7b9d4e9d43abc55fd

You will see this error message.

screen shot 2018-10-26 at 1 03 12 pm

Backtrace

[backtrace]

panic: sql: converting argument $10 type: uint64 values with high bit set are not supported

Hi Team,

A mining node on the testnet first reported below error on Aug 30, 2018. All active nodes of shyftgeth stopped shortly after.
panic: sql: converting argument $10 type: uint64 values with high bit set are not supported

The testnet was restarted a couple times since then, but gave the same error and stopped every time. It is likely that a transaction in block 93058 triggered the pg panic.

System information

Geth version: shyftgeth 1.8.3
OS & Version: Linux Ubuntu 16.04

Expected behaviour

Blockchain sync continues indefinitely

Actual behaviour

Each time when blockchain sync reaches block height 93058, pg database panics and stops shyftgeth

Steps to reproduce the behaviour

Run a bootnode and wait for blockchain synchronization to reach height 93058

Backtrace

INFO [08-30|18:34:26] :link: block reached canonical chain number=93052 hash=4ef0c8…14c58d
INFO [08-30|18:34:26] :hammer: mined potential block number=93057 hash=33d158…3838a9
INFO [08-30|18:34:26] Commit new mining work number=93058 txs=1 uncles=0 elapsed=432.772µs
INFO [08-30|18:34:42] Successfully sealed new block number=93058 hash=668138…700dba
panic: sql: converting argument $10 type: uint64 values with high bit set are not supported

goroutine 39 [running]:
github.com/ShyftNetwork/go-empyrean/core.InsertTx(0xc422060dc0, 0xc424c45e50, 0x42, 0xc4485624a0, 0x0, 0x0, 0xc425872c60, 0x2a, 0xc424c45ef0, 0x42, ...)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/core/shyft_database_util.go:426 +0x482
github.com/ShyftNetwork/go-empyrean/core.swriteTransactions(0xc422060dc0, 0xc428ef3a70, 0x5eca139e7c388166, 0x9dfd5d97b78da3c0, 0x100f2df332128173, 0xba0d70dfb868a8c5, 0xc43982f066, 0x5, 0xc42000f7f8, 0x1, ...)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/core/shyft_database_util.go:204 +0x5f0
github.com/ShyftNetwork/go-empyrean/core.SWriteBlock(0xc43aaa6bd0, 0xc42000f7f8, 0x1, 0x1, 0x0, 0x0)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/core/shyft_database_util.go:134 +0x918
github.com/ShyftNetwork/go-empyrean/core.(*BlockChain).WriteBlockWithState(0xc420018000, 0xc43aaa6bd0, 0xc42000f7f8, 0x1, 0x1, 0xc42bf4e780, 0x1, 0x0, 0x0)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/core/blockchain.go:1005 +0xe3d
github.com/ShyftNetwork/go-empyrean/miner.(*worker).wait(0xc42022e3c0)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/miner/worker.go:313 +0x24f
created by github.com/ShyftNetwork/go-empyrean/miner.newWorker
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/miner/worker.go:155 +0x4d0

INFO [09-09|16:09:29] Imported new chain segment blocks=1005 txs=0 mgas=0.000 elapsed=5.284s mgasps=0.000 number=91456 hash=a37edf…b7c152 cache=84.42kB
INFO [09-09|16:09:37] Imported new chain segment blocks=1042 txs=0 mgas=0.000 elapsed=8.003s mgasps=0.000 number=92498 hash=5b70d5…599f17 cache=84.42kB
INFO [09-09|16:09:41] Imported new chain segment blocks=1006 txs=2 mgas=0.042 elapsed=4.600s mgasps=0.009 number=93504 hash=f16cea…7fa038 cache=88.59kB
panic: sql: converting argument $10 type: uint64 values with high bit set are not supported

goroutine 17366141 [running]:
github.com/ShyftNetwork/go-empyrean/core.InsertTx(0xc4246350e0, 0xc43a1b1680, 0x42, 0xc42945bd20, 0x0, 0x0, 0xc429e33b60, 0x2a, 0xc43a1b1720, 0x42, ...)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/core/shyft_database_util.go:426 +0x482
github.com/ShyftNetwork/go-empyrean/core.swriteTransactions(0xc4246350e0, 0xc42ae3fcb0, 0x8982c2f2c8a79df, 0xbf4adbf8489fb73c, 0x25061ea3a19a04ed, 0xc29872472444e119, 0xc44455c496, 0x5, 0xc43b42d580, 0x8, ...)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/core/shyft_database_util.go:204 +0x5f0
github.com/ShyftNetwork/go-empyrean/core.SWriteBlock(0xc42339d3b0, 0xc43b42d580, 0x8, 0x8, 0x0, 0x0)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/core/shyft_database_util.go:134 +0x918
github.com/ShyftNetwork/go-empyrean/core.(*BlockChain).WriteBlockWithState(0xc4202a4000, 0xc42339d3b0, 0xc43b42d580, 0x8, 0x8, 0xc43b449680, 0x1, 0x0, 0x0)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/core/blockchain.go:1005 +0xe3d
github.com/ShyftNetwork/go-empyrean/core.(*BlockChain).insertChain(0xc4202a4000, 0xc42a7da000, 0x3d0, 0x3d0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/core/blockchain.go:1174 +0x16fa
github.com/ShyftNetwork/go-empyrean/core.(*BlockChain).InsertChain(0xc4202a4000, 0xc42a7da000, 0x3d0, 0x3d0, 0x1b66998, 0x0, 0x0)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/core/blockchain.go:1019 +0x67
github.com/ShyftNetwork/go-empyrean/eth/downloader.(*Downloader).importBlockResults(0xc420130c00, 0xc42794c000, 0x3d0, 0x3d0, 0x3d0, 0x0)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/eth/downloader/downloader.go:1354 +0x431
github.com/ShyftNetwork/go-empyrean/eth/downloader.(*Downloader).processFullSyncContent(0xc420130c00, 0xc4204f8688, 0xc4204f8798)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/eth/downloader/downloader.go:1328 +0x79
github.com/ShyftNetwork/go-empyrean/eth/downloader.(*Downloader).(github.com/ShyftNetwork/go-empyrean/eth/downloader.processFullSyncContent)-fm(0x8, 0xfd23a0)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/eth/downloader/downloader.go:471 +0x2a
github.com/ShyftNetwork/go-empyrean/eth/downloader.(*Downloader).spawnSync.func1(0xc429755350, 0xc4298020c0, 0xc42c1917f0)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/eth/downloader/downloader.go:484 +0x51
created by github.com/ShyftNetwork/go-empyrean/eth/downloader.(*Downloader).spawnSync
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/eth/downloader/downloader.go:484 +0xc3

INFO [09-12|18:40:47] Imported new chain segment blocks=1172 txs=0 mgas=0.000 elapsed=8.002s mgasps=0.000 number=92436 hash=f554e7…b78494 cache=84.42kB
INFO [09-12|18:40:51] Imported new chain segment blocks=876 txs=2 mgas=0.042 elapsed=3.594s mgasps=0.012 number=93312 hash=62a387…236d36 cache=88.59kB
panic: sql: converting argument $10 type: uint64 values with high bit set are not supported

goroutine 700718 [running]:
github.com/ShyftNetwork/go-empyrean/core.InsertTx(0xc4243bb220, 0xc43e15b270, 0x42, 0xc4286f99e0, 0x0, 0x0, 0xc4295ce210, 0x2a, 0xc43e15b310, 0x42, ...)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/core/shyft_database_util.go:426 +0x482
github.com/ShyftNetwork/go-empyrean/core.swriteTransactions(0xc4243bb220, 0xc428fd5a70, 0x8982c2f2c8a79df, 0xbf4adbf8489fb73c, 0x25061ea3a19a04ed, 0xc29872472444e119, 0xc42bc01db6, 0x5, 0xc420727800, 0x8, ...)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/core/shyft_database_util.go:204 +0x5f0
github.com/ShyftNetwork/go-empyrean/core.SWriteBlock(0xc42a580360, 0xc420727800, 0x8, 0x8, 0x0, 0x0)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/core/shyft_database_util.go:134 +0x918
github.com/ShyftNetwork/go-empyrean/core.(*BlockChain).WriteBlockWithState(0xc420316000, 0xc42a580360, 0xc420727800, 0x8, 0x8, 0xc43b776000, 0x1, 0x0, 0x0)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/core/blockchain.go:1005 +0xe3d
github.com/ShyftNetwork/go-empyrean/core.(*BlockChain).insertChain(0xc420316000, 0xc4202bcf00, 0x490, 0x490, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/core/blockchain.go:1174 +0x16fa
github.com/ShyftNetwork/go-empyrean/core.(*BlockChain).InsertChain(0xc420316000, 0xc4202bcf00, 0x490, 0x490, 0x1b66998, 0x0, 0x0)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/core/blockchain.go:1019 +0x67
github.com/ShyftNetwork/go-empyrean/eth/downloader.(*Downloader).importBlockResults(0xc4201eef00, 0xc4202baa00, 0x490, 0x490, 0x490, 0x0)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/eth/downloader/downloader.go:1354 +0x431
github.com/ShyftNetwork/go-empyrean/eth/downloader.(*Downloader).processFullSyncContent(0xc4201eef00, 0x90ab4d00bcc2a0f7, 0xc4203c0798)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/eth/downloader/downloader.go:1328 +0x79
github.com/ShyftNetwork/go-empyrean/eth/downloader.(*Downloader).(github.com/ShyftNetwork/go-empyrean/eth/downloader.processFullSyncContent)-fm(0x91a51f7000000008, 0xfd23a0)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/eth/downloader/downloader.go:471 +0x2a
github.com/ShyftNetwork/go-empyrean/eth/downloader.(*Downloader).spawnSync.func1(0xc425f6a160, 0xc4282cfaa0, 0xc426899d10)
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/eth/downloader/downloader.go:484 +0x51
created by github.com/ShyftNetwork/go-empyrean/eth/downloader.(*Downloader).spawnSync
/go/src/github.com/ShyftEthereum/go-empyrean/build/_workspace/src/github.com/ShyftNetwork/go-empyrean/eth/downloader/downloader.go:484 +0xc3

[COPY ME] To add a new bug

Please leave this task in this project so that everyone can copy it to file a new bug.

How to file a new bug:

  1. Copy this task! Select Copy Task... from the task actions icon (the three dot button) in the top-right corner of the right pane.

  2. Fill in the following details:

Description of issue:

Repro steps:
1.
2.
3.

What you expected to happen:

What actually happened:

More details:

  1. Fill out the Browser field and the Number of user reports field. The other fields will be completed by the engineer assigned to this task.

  2. Attach screenshots of the issue to give more context on the bug.

Note: Before you file a new bug, please check to see if it has already been filed in this project. If it has, heart or comment on the existing task to indicate that you've experienced the same bug (instead of adding another task).

Log in the API

The Development branch currently has a fmt.print for getAllBlocks that should be removed.

should target gas price

--targetgaslimit 80000000

in startShyftGeth.sh for both paths is useful so the gas won't be optimized downwards if a node is running for an extended period of time

Example - Log in button broken

This is an example task.

To start adding new bugs to this project, duplicate this task:

  • [DUPLICATE ME] To add a new bug

[READ ME] Instructions on how to use this template

How to use this Bug Tracking template
This template gets you started with sample tasks, section headers, and three Asana-built custom fields to help you track the browser, priority, and number of user reports for each bug.

Edit the sections, tasks, and custom fields to fit your workflow, and use this project to file, track, and fix bugs.

To delete a sample task, click the three dots icon at the top of the right pane and select Delete Task from the drop down menu. As a shortcut, you can also select the task from the center pane and press Tab+Backspace.

To start setting up your project, follow the subtasks below.

Learn more about bug tracking in Asana:
https://asa.na/uk

Send feedback about this template:
https://asana.com/research/templates-feedback﹍

shyftdbtest does not exist

System information

(development branch)

Geth
Version: 1.8.3-unstable
Git Commit: fca85ebb8ac1a3f49e28f92535ff9c64d6ea0cf1
Architecture: amd64
Protocol Versions: [63 62]
Network Id: 1
Go Version: go1.10
Operating System: linux
GOPATH=
GOROOT=/usr/local/go

Expected behaviour

shyftdbtest table is cleared a and empty table created.

Actual behaviour

Running go test ./test errors:

go: disabling cache (/home/david/.cache/go-build) due to initialization failure: open /home/david/.cache/go-build/log.txt: permission denied
--- FAIL: TestVM (0.12s)
panic: pq: database "shyftdbtest" does not exist [recovered]
	panic: pq: database "shyftdbtest" does not exist

goroutine 36 [running]:
testing.tRunner.func1(0xc4203825a0)
	/usr/local/go/src/testing/testing.go:742 +0x29d
panic(0xbdfa00, 0xc420330240)
	/usr/local/go/src/runtime/panic.go:505 +0x229
github.com/ShyftNetwork/go-empyrean/core.BlockExists(0xc42003da40, 0x42, 0x704059d4be25755c)
	/home/david/go/src/github.com/ShyftNetwork/go-empyrean/core/shyft_database_util.go:215 +0x1f6
github.com/ShyftNetwork/go-empyrean/core.SetupGenesisBlock(0xdd5ce0, 0xc4200f8000, 0xc4204240b0, 0x7fd9736ff000, 0x0, 0x0, 0x0, 0x0, 0xc420001e00, 0xc420087ee8)
	/home/david/go/src/github.com/ShyftNetwork/go-empyrean/core/genesis.go:266 +0x24e
github.com/ShyftNetwork/go-empyrean/eth.SNew(0xc420001e00, 0xc42000c500, 0x4262c8, 0x180)
	/home/david/go/src/github.com/ShyftNetwork/go-empyrean/eth/backend.go:111 +0x76
github.com/ShyftNetwork/go-empyrean/eth.InitTracerEnv()
	/home/david/go/src/github.com/ShyftNetwork/go-empyrean/eth/shyft_tracer.go:30 +0xe1
github.com/ShyftNetwork/go-empyrean/tests.TestVM(0xc4203825a0)
	/home/david/go/src/github.com/ShyftNetwork/go-empyrean/tests/vm_test.go:62 +0x12a
testing.tRunner(0xc4203825a0, 0xd44740)
	/usr/local/go/src/testing/testing.go:777 +0xd0
created by testing.(*T).Run
	/usr/local/go/src/testing/testing.go:824 +0x2e0
FAIL	github.com/ShyftNetwork/go-empyrean/tests	0.598s

Steps to reproduce the behaviour

  1. Clone repo
  2. Ensure test submodule is initialized: git submodule init && git submodule update
  3. Start postgres with shyftdbtest table
  4. Run go test ./test

Block Explorer UI Issue: Block history doesn't display when the blockchain is long

Expected behaviour

The block explorer should display blocks when clicking on 'blocks' on the built-in block explorer, regardless of whether the 'syncmode' setting of the node is 'fullsync' or not.

Actual behaviour

When the blockchain has been up and running for a while (i.e. there are many blocks in the block history) the block explorer fails to load the block history. It is suspected that this happens because the block explorer doesn't have pagination, so it is stuck trying to load all the blocks (and never displays any).

Example - Typos in iOS app

This is an example task.

To start adding new bugs to this project, duplicate this task:

  • [DUPLICATE ME] To add a new bug

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.