Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Getting error logs - Invalid receipt array RLP hash error #23245

Closed
sahni-tanya opened this issue Jul 22, 2021 · 11 comments · Fixed by #23247
Closed

Getting error logs - Invalid receipt array RLP hash error #23245

sahni-tanya opened this issue Jul 22, 2021 · 11 comments · Fixed by #23247
Labels

Comments

@sahni-tanya
Copy link

System information

Geth version: Voyager Cluster (v1.10.4)

Issue

We are currently getting some below logs in mainnet :

ERROR[07-21|15:16:45.852] Invalid receipt array RLP                hash=b1d9c0..120402 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-21|15:16:45.844] Invalid receipt array RLP                hash=545c0a..079883 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
...
@ligi
Copy link
Member

ligi commented Jul 22, 2021

Was there any unclean shutdown? Can you provide more log please (especially the beginning). Also is it a unmodified geth and with which parameters do you start it?

@rjl493456442
Copy link
Member

The cause is in this PR #22852, we remove the support for legacy scheme receipts. But in theory it shouldn't effect the users since we have the background thread to move the ancient chain data around. And the receipts will be re-encoded with the new format.

I am curious how old the legacy receipts are. Are you enable to compile the Geth manually? If so could you please add these diff into the Geth and post the error information here?

diff --git a/core/rawdb/accessors_chain.go b/core/rawdb/accessors_chain.go
index 76132bf37..871ab0b64 100644
--- a/core/rawdb/accessors_chain.go
+++ b/core/rawdb/accessors_chain.go
@@ -572,7 +572,7 @@ func ReadRawReceipts(db ethdb.Reader, hash common.Hash, number uint64) types.Rec
        // Convert the receipts from their storage form to their internal representation
        storageReceipts := []*types.ReceiptForStorage{}
        if err := rlp.DecodeBytes(data, &storageReceipts); err != nil {
-               log.Error("Invalid receipt array RLP", "hash", hash, "err", err)
+               log.Error("Invalid receipt array RLP", "number", number, "hash", hash.Hex(), "err", err)
                return nil
        }
        receipts := make(types.Receipts, len(storageReceipts))

@rjl493456442
Copy link
Member

No, the background freezer won't re-encode the legacy receipts. I guess we may break the database compatibility by mistake.

@sahni-tanya
Copy link
Author

@ligi About your question:

Was there any unclean shutdown? Can you provide more log please (especially the beginning). Also is it a unmodified geth and with which parameters do you start it?

No, shutdown was not performed at that time or anytime close to the logs. The logs happened abruptly by itself. And yes, it is unmodified geth version.

We use below param to run geth node:

geth --syncmode fast --http --http.addr ******* --http.vhosts=***** --datadir ***** --verbosity 1 --http.api **** --ws --ws.addr ***** --ws.origins=***** --ws.api ***** --metrics --metrics.addr ***** 

Logs :

ERROR[07-19|09:59:29.234] Snapshot extension registration failed   peer=b17a994d err="peer connected on snap without compatible eth support"
ERROR[07-19|10:28:11.735] Snapshot extension registration failed   peer=89027a8b err="peer connected on snap without compatible eth support"
ERROR[07-19|10:29:47.603] Snapshot extension registration failed   peer=d00dd05a err="peer connected on snap without compatible eth support"
ERROR[07-19|10:33:00.064] Snapshot extension registration failed   peer=6b825539 err="peer connected on snap without compatible eth support"
ERROR[07-19|11:41:41.686] Snapshot extension registration failed   peer=cd047704 err="peer connected on snap without compatible eth support"
ERROR[07-19|11:41:46.674] Snapshot extension registration failed   peer=4cc3f4a1 err="peer connected on snap without compatible eth support"
ERROR[07-19|19:49:34.523] Demoting invalidated transaction         hash=1e8fe2..61981f
ERROR[07-20|00:17:55.141] Invalid receipt array RLP                hash=c7d0a9..230149 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.145] Invalid receipt array RLP                hash=73dcda..de5070 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.153] Invalid receipt array RLP                hash=59349f..3066bc err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.157] Invalid receipt array RLP                hash=8aff52..38841d err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.158] Invalid receipt array RLP                hash=794059..741ba5 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.162] Invalid receipt array RLP                hash=78d5d2..fc76be err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.163] Invalid receipt array RLP                hash=62e201..64b060 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.172] Invalid receipt array RLP                hash=324c55..470b99 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.178] Invalid receipt array RLP                hash=de097c..c5ad81 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.182] Invalid receipt array RLP                hash=abacf3..35b320 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.185] Invalid receipt array RLP                hash=3ea7f0..bdcdd3 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.190] Invalid receipt array RLP                hash=88a94c..167ef0 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.192] Invalid receipt array RLP                hash=9d71f3..0ee03e err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.195] Invalid receipt array RLP                hash=8c07c0..5020c6 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.197] Invalid receipt array RLP                hash=3cf861..c88308 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.201] Invalid receipt array RLP                hash=49515a..f294d0 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.203] Invalid receipt array RLP                hash=7136e8..4942e0 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.204] Invalid receipt array RLP                hash=32a65b..c796fd err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.206] Invalid receipt array RLP                hash=b36d87..21e5cc err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.210] Invalid receipt array RLP                hash=254ed5..4fba0b err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.212] Invalid receipt array RLP                hash=29c150..c519f0 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.213] Invalid receipt array RLP                hash=afe94e..2c4694 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.214] Invalid receipt array RLP                hash=8ab5e4..7b2d3c err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.222] Invalid receipt array RLP                hash=7edbff..015cbe err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.223] Invalid receipt array RLP                hash=674e47..aaad13 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.225] Invalid receipt array RLP                hash=be085a..627bef err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.230] Invalid receipt array RLP                hash=5bf069..cd6d08 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.232] Invalid receipt array RLP                hash=a93e1c..5f79df err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.233] Invalid receipt array RLP                hash=0fac50..216a4a err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.235] Invalid receipt array RLP                hash=6c4659..5cef45 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.236] Invalid receipt array RLP                hash=4859e8..3fa0e2 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.238] Invalid receipt array RLP                hash=8862cb..328570 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.243] Invalid receipt array RLP                hash=2e4b10..532b80 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.245] Invalid receipt array RLP                hash=754b9b..0da8d0 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.246] Invalid receipt array RLP                hash=f4607b..9c88ac err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.247] Invalid receipt array RLP                hash=f8bf23..4f4121 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.252] Invalid receipt array RLP                hash=6f557c..13a39f err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.254] Invalid receipt array RLP                hash=7a5099..b2a2ab err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.256] Invalid receipt array RLP                hash=7fa6e8..923b77 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.257] Invalid receipt array RLP                hash=4c8245..1a1d4b err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.262] Invalid receipt array RLP                hash=51e4e3..4472ff err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.263] Invalid receipt array RLP                hash=dfcfbe..cbac57 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.264] Invalid receipt array RLP                hash=a50807..f1a19b err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.266] Invalid receipt array RLP                hash=1ef504..7b3c37 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.267] Invalid receipt array RLP                hash=93ebeb..a42856 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.268] Invalid receipt array RLP                hash=80d77c..4670d4 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.273] Invalid receipt array RLP                hash=5057d5..0e46f4 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.278] Invalid receipt array RLP                hash=9a6495..04a662 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.279] Invalid receipt array RLP                hash=0276dd..3ab2e6 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.285] Invalid receipt array RLP                hash=f75f16..ac74c4 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.286] Invalid receipt array RLP                hash=4a6c85..dbd015 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.287] Invalid receipt array RLP                hash=b3b165..efbadc err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.288] Invalid receipt array RLP                hash=c5faa9..11aa92 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.293] Invalid receipt array RLP                hash=86b39f..4a3917 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.294] Invalid receipt array RLP                hash=f31d9b..78597b err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.296] Invalid receipt array RLP                hash=a7725b..999111 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.298] Invalid receipt array RLP                hash=7f6363..490037 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.302] Invalid receipt array RLP                hash=9d4564..0e00db err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.302] Invalid receipt array RLP                hash=51df68..fc6dfa err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.303] Invalid receipt array RLP                hash=53db48..bb72fd err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.305] Invalid receipt array RLP                hash=00f50a..46eba1 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.306] Invalid receipt array RLP                hash=9d5fc1..2fb55e err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.307] Invalid receipt array RLP                hash=5c5ead..387bf5 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.309] Invalid receipt array RLP                hash=9f7bf3..eecd9b err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.310] Invalid receipt array RLP                hash=fe94f5..9232af err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.314] Invalid receipt array RLP                hash=27d232..ee07de err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.315] Invalid receipt array RLP                hash=b58986..e16291 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.321] Invalid receipt array RLP                hash=a9b5a0..327950 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.322] Invalid receipt array RLP                hash=6e81bd..ec957e err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.327] Invalid receipt array RLP                hash=f79241..e43748 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.337] Invalid receipt array RLP                hash=ae6abb..52e430 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.339] Invalid receipt array RLP                hash=2a31d1..e820da err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.629] Invalid receipt array RLP                hash=093577..94ee83 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:55.638] Invalid receipt array RLP                hash=6d763b..95aab9 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:56.042] Invalid receipt array RLP                hash=421518..8fb007 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:56.047] Invalid receipt array RLP                hash=3768ec..fb29b9 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:56.269] Invalid receipt array RLP                hash=feab20..705ef8 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:56.272] Invalid receipt array RLP                hash=1442dc..a38c9b err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:56.636] Invalid receipt array RLP                hash=564084..500035 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:56.643] Invalid receipt array RLP                hash=9111fd..dd186c err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:56.788] Invalid receipt array RLP                hash=ad7f32..ba62c3 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:56.792] Invalid receipt array RLP                hash=6c52c5..9938ba err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:56.938] Invalid receipt array RLP                hash=0b9acd..26c4f2 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:56.940] Invalid receipt array RLP                hash=8212bb..a0ba41 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:57.767] Invalid receipt array RLP                hash=2e74f2..1c57eb err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:57.769] Invalid receipt array RLP                hash=dbe4a5..36b136 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:58.032] Invalid receipt array RLP                hash=ec23e9..102977 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:58.038] Invalid receipt array RLP                hash=eb1c9e..ea65b6 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:59.242] Invalid receipt array RLP                hash=a8a249..0d360a err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:17:59.244] Invalid receipt array RLP                hash=162e6c..7c285a err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:11.760] Invalid receipt array RLP                hash=bcfc81..4d0f96 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:11.766] Invalid receipt array RLP                hash=a9671c..b26205 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:13.774] Invalid receipt array RLP                hash=e33783..0b5a4c err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:13.777] Invalid receipt array RLP                hash=9c76f2..007e96 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:19.121] Invalid receipt array RLP                hash=0cd5ad..03063a err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:19.123] Invalid receipt array RLP                hash=30aec6..437b74 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:20.949] Invalid receipt array RLP                hash=1fed26..5209f5 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:20.951] Invalid receipt array RLP                hash=897a0c..23d353 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:30.944] Invalid receipt array RLP                hash=ef77bb..4daf2b err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:30.946] Invalid receipt array RLP                hash=c271ce..dea08c err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:36.792] Invalid receipt array RLP                hash=4692af..9b40b0 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:36.801] Invalid receipt array RLP                hash=a140a6..d91180 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:38.905] Invalid receipt array RLP                hash=858d91..cd8d6b err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:38.908] Invalid receipt array RLP                hash=0d3d0b..a2eede err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:39.419] Invalid receipt array RLP                hash=eaa7f4..71e830 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:39.422] Invalid receipt array RLP                hash=e89b20..180673 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:40.668] Invalid receipt array RLP                hash=67f70c..ee1833 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:40.675] Invalid receipt array RLP                hash=f6dd9a..f0aa98 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:41.796] Invalid receipt array RLP                hash=7c8ceb..a80149 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:41.797] Invalid receipt array RLP                hash=45cf03..c1161d err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:42.564] Invalid receipt array RLP                hash=b16599..9a555e err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:42.570] Invalid receipt array RLP                hash=b8091b..10d4ec err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:46.593] Invalid receipt array RLP                hash=ed3900..0dfc79 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:46.611] Invalid receipt array RLP                hash=9cc93a..3f5bb7 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:47.565] Invalid receipt array RLP                hash=9b95db..c70058 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:47.569] Invalid receipt array RLP                hash=3127a8..9ca947 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:50.246] Invalid receipt array RLP                hash=da833d..1ef2b6 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:50.248] Invalid receipt array RLP                hash=59d841..dc1b5f err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:52.123] Invalid receipt array RLP                hash=98fa37..be4cfc err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:52.130] Invalid receipt array RLP                hash=0712ae..976fba err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:54.384] Invalid receipt array RLP                hash=c84503..cf2a39 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:54.386] Invalid receipt array RLP                hash=58f50f..a8ce29 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:56.009] Invalid receipt array RLP                hash=5265eb..02cba8 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:56.012] Invalid receipt array RLP                hash=094534..d09470 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:58.618] Invalid receipt array RLP                hash=77093d..52c77f err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:58.620] Invalid receipt array RLP                hash=f363c5..64c8ce err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:59.728] Invalid receipt array RLP                hash=62e4cc..de7c38 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:18:59.732] Invalid receipt array RLP                hash=1c30ed..90a1b0 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:01.373] Invalid receipt array RLP                hash=74c68e..76eaf6 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:01.377] Invalid receipt array RLP                hash=70f501..6ccaed err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:03.588] Invalid receipt array RLP                hash=f713cd..ed5661 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:03.589] Invalid receipt array RLP                hash=5a61ed..ca0855 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:04.933] Invalid receipt array RLP                hash=036a80..0df056 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:04.935] Invalid receipt array RLP                hash=e641e1..b6d007 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:06.484] Invalid receipt array RLP                hash=9ca419..b299c7 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:06.486] Invalid receipt array RLP                hash=d726ac..29c2c2 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:08.937] Invalid receipt array RLP                hash=020ad1..ac24a7 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:08.940] Invalid receipt array RLP                hash=46a2b2..71d582 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:12.602] Invalid receipt array RLP                hash=fa8a3c..dfd102 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:12.604] Invalid receipt array RLP                hash=cd41e3..1d621e err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:14.327] Invalid receipt array RLP                hash=338430..948d47 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:14.329] Invalid receipt array RLP                hash=113948..dc462a err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:20.244] Invalid receipt array RLP                hash=a5bb49..238c8b err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:20.246] Invalid receipt array RLP                hash=766d5e..f5efd6 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:21.132] Invalid receipt array RLP                hash=7bac98..853514 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:21.135] Invalid receipt array RLP                hash=4ee95a..2f6d4a err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:22.877] Invalid receipt array RLP                hash=3a36f7..0c86b2 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:22.880] Invalid receipt array RLP                hash=b260bc..6ef9f8 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:24.847] Invalid receipt array RLP                hash=64b527..184ac8 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:24.850] Invalid receipt array RLP                hash=2c19b0..5b802e err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:31.018] Invalid receipt array RLP                hash=22f8e0..3993f6 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:31.021] Invalid receipt array RLP                hash=820713..2d888b err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:32.330] Invalid receipt array RLP                hash=f0fcbb..269cb3 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:32.333] Invalid receipt array RLP                hash=7c3376..550fb9 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:42.276] Invalid receipt array RLP                hash=d7fc7a..2764ae err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:42.279] Invalid receipt array RLP                hash=577c2a..a6aa06 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:48.729] Invalid receipt array RLP                hash=fbd7e6..f1ca46 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:48.733] Invalid receipt array RLP                hash=473a52..ad1351 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:50.115] Invalid receipt array RLP                hash=2f89b9..f5d72c err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:50.118] Invalid receipt array RLP                hash=d40073..86fd31 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:56.473] Invalid receipt array RLP                hash=242af4..77f88e err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:56.476] Invalid receipt array RLP                hash=88b2fc..4d83f4 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:57.572] Invalid receipt array RLP                hash=862566..288b67 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:19:57.575] Invalid receipt array RLP                hash=b58a83..363dd9 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:05.268] Invalid receipt array RLP                hash=e5222d..45323e err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:05.271] Invalid receipt array RLP                hash=eec8d4..0804b7 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:08.340] Invalid receipt array RLP                hash=4ef4f8..41a4a6 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:08.344] Invalid receipt array RLP                hash=cd7c05..ad28e6 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:09.066] Invalid receipt array RLP                hash=6d4f9b..c93a52 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:09.071] Invalid receipt array RLP                hash=5e6abc..137d33 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:11.049] Invalid receipt array RLP                hash=b39269..7aea12 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:11.051] Invalid receipt array RLP                hash=82cd34..519d75 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:13.483] Invalid receipt array RLP                hash=a49f0b..5846ff err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:13.485] Invalid receipt array RLP                hash=06a292..d1fe1e err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:14.959] Invalid receipt array RLP                hash=c70c8d..b450b4 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:14.962] Invalid receipt array RLP                hash=585606..d48e3a err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:15.202] Invalid receipt array RLP                hash=01f364..3394f6 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:15.206] Invalid receipt array RLP                hash=a5ce07..d83fe5 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:16.555] Invalid receipt array RLP                hash=4d1638..fcbff1 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:16.558] Invalid receipt array RLP                hash=b19d90..2a9bb3 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:17.934] Invalid receipt array RLP                hash=b676b1..674b19 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:17.935] Invalid receipt array RLP                hash=04a7ee..4c8b2d err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:19.272] Invalid receipt array RLP                hash=462fd4..653d9b err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:19.275] Invalid receipt array RLP                hash=70b517..0f3b77 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:20.712] Invalid receipt array RLP                hash=72293a..c0bd78 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:20.715] Invalid receipt array RLP                hash=9fb76c..73cc6f err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:21.217] Invalid receipt array RLP                hash=6e2161..54136e err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:21.218] Invalid receipt array RLP                hash=0fcf7e..1abedb err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:22.454] Invalid receipt array RLP                hash=59e949..683ad2 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:22.456] Invalid receipt array RLP                hash=aec9ba..9da166 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:26.212] Invalid receipt array RLP                hash=a71c5b..b40cbd err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:26.214] Invalid receipt array RLP                hash=fb45af..50c9f6 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:27.714] Invalid receipt array RLP                hash=dd0167..8a53fb err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:27.716] Invalid receipt array RLP                hash=429f06..0c20fa err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:30.351] Invalid receipt array RLP                hash=0612c7..b8c70c err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:30.353] Invalid receipt array RLP                hash=19d2fc..a89bb3 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:34.135] Invalid receipt array RLP                hash=678846..6f7033 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:34.142] Invalid receipt array RLP                hash=cd2eee..be2dfa err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:35.049] Invalid receipt array RLP                hash=20fe84..459ae4 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:35.053] Invalid receipt array RLP                hash=5725a6..a3a667 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:37.189] Invalid receipt array RLP                hash=132232..894b6a err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:37.191] Invalid receipt array RLP                hash=1e2998..01cbc1 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:38.922] Invalid receipt array RLP                hash=844125..76a35c err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:38.927] Invalid receipt array RLP                hash=8d93ff..9abe91 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:40.661] Invalid receipt array RLP                hash=81e852..e2dfd5 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:40.666] Invalid receipt array RLP                hash=b87c50..8ffc93 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:42.019] Invalid receipt array RLP                hash=154b0e..8829b7 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:42.021] Invalid receipt array RLP                hash=aae6a3..e15101 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:43.653] Invalid receipt array RLP                hash=b18873..3c31a1 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:43.655] Invalid receipt array RLP                hash=242300..41dbd1 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:44.037] Invalid receipt array RLP                hash=a018f2..9bdd38 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:44.038] Invalid receipt array RLP                hash=1368e2..a1772f err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:46.003] Invalid receipt array RLP                hash=cf4866..be0f06 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:46.007] Invalid receipt array RLP                hash=af748a..97058a err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:48.463] Invalid receipt array RLP                hash=33d13c..d28c4f err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:48.467] Invalid receipt array RLP                hash=a71232..9972ad err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:49.810] Invalid receipt array RLP                hash=c33b68..a9024a err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:49.814] Invalid receipt array RLP                hash=c8ead1..86d057 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:51.821] Invalid receipt array RLP                hash=ec7cb0..501095 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:51.824] Invalid receipt array RLP                hash=36897e..0eb800 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:53.205] Invalid receipt array RLP                hash=0a36f9..5c838a err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:53.208] Invalid receipt array RLP                hash=ea5cad..6826e3 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:53.502] Invalid receipt array RLP                hash=c9fd0a..5b4329 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:53.506] Invalid receipt array RLP                hash=af8030..152f02 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:56.182] Invalid receipt array RLP                hash=dc6122..d522b8 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:56.185] Invalid receipt array RLP                hash=728424..748940 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:58.257] Invalid receipt array RLP                hash=426a25..05f287 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:20:58.258] Invalid receipt array RLP                hash=4f2e50..5a2c98 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:21:00.120] Invalid receipt array RLP                hash=e9536f..9bfa24 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:21:00.122] Invalid receipt array RLP                hash=344db9..60288c err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:21:06.238] Invalid receipt array RLP                hash=53ff44..0fe304 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:21:06.241] Invalid receipt array RLP                hash=ce6daf..b065c5 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:21:06.784] Invalid receipt array RLP                hash=738245..61943c err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:21:06.786] Invalid receipt array RLP                hash=0ccce0..2cfad8 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:21:07.116] Invalid receipt array RLP                hash=9e9d53..087bd5 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:21:07.118] Invalid receipt array RLP                hash=9716b3..384622 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:21:19.930] Invalid receipt array RLP                hash=56fe79..f618fc err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:21:19.932] Invalid receipt array RLP                hash=f24793..274501 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:21:20.493] Invalid receipt array RLP                hash=2c752b..3d2425 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:21:20.495] Invalid receipt array RLP                hash=b34fce..21f9f2 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:21:21.276] Invalid receipt array RLP                hash=dcd74f..05f59a err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:21:21.277] Invalid receipt array RLP                hash=3509c3..ba6086 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:21:29.770] Invalid receipt array RLP                hash=15a527..cbe0bd err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:21:29.775] Invalid receipt array RLP                hash=defdab..20f2ad err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:21:49.650] Invalid receipt array RLP                hash=7b4655..7fe4cb err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:21:49.653] Invalid receipt array RLP                hash=62cfa1..a515b6 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:21:50.625] Invalid receipt array RLP                hash=45c7a9..bef1c4 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:21:50.629] Invalid receipt array RLP                hash=8f4381..de346c err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:21:59.628] Invalid receipt array RLP                hash=988b35..09d068 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:21:59.629] Invalid receipt array RLP                hash=7265e2..b7cc42 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:22:00.778] Invalid receipt array RLP                hash=f9fd75..99d582 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:22:00.780] Invalid receipt array RLP                hash=8028b6..ee6630 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:22:01.158] Invalid receipt array RLP                hash=f50a11..d4016b err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:22:01.160] Invalid receipt array RLP                hash=8baa62..4aa4c3 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:22:08.663] Invalid receipt array RLP                hash=b1192e..2d1948 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|00:22:08.664] Invalid receipt array RLP                hash=2e40e0..ea568e err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-20|11:59:01.031] Snapshot extension registration failed   peer=b17a994d err="peer connected on snap without compatible eth support"
ERROR[07-20|14:57:02.856] Snapshot extension registration failed   peer=566b9ccf err="peer connected on snap without compatible eth support"
ERROR[07-20|15:43:53.941] Snapshot extension registration failed   peer=cacd63c6 err="peer connected on snap without compatible eth support"
ERROR[07-20|15:45:25.103] Snapshot extension registration failed   peer=566b9ccf err="peer connected on snap without compatible eth support"
ERROR[07-20|15:51:12.184] Snapshot extension registration failed   peer=41311627 err="peer connected on snap without compatible eth support"
ERROR[07-20|16:10:43.564] Snapshot extension registration failed   peer=4cc3f4a1 err="peer connected on snap without compatible eth support"
ERROR[07-20|18:01:30.518] Snapshot extension registration failed   peer=59b61b14 err="peer connected on snap without compatible eth support"
ERROR[07-20|18:02:01.170] Snapshot extension registration failed   peer=4cc3f4a1 err="peer connected on snap without compatible eth support"
ERROR[07-20|18:02:20.525] Snapshot extension registration failed   peer=cacd63c6 err="peer connected on snap without compatible eth support"
ERROR[07-20|18:03:03.835] Snapshot extension registration failed   peer=b17a994d err="peer connected on snap without compatible eth support"
ERROR[07-20|18:51:49.711] Snapshot extension registration failed   peer=d00dd05a err="peer connected on snap without compatible eth support"
ERROR[07-20|18:56:13.812] Snapshot extension registration failed   peer=cd047704 err="peer connected on snap without compatible eth support"
ERROR[07-21|10:12:36.533] Snapshot extension registration failed   peer=cacd63c6 err="peer connected on snap without compatible eth support"
ERROR[07-21|10:14:41.985] Snapshot extension registration failed   peer=d00dd05a err="peer connected on snap without compatible eth support"
ERROR[07-21|15:15:58.561] Invalid receipt array RLP                hash=cffb20..795877 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-21|15:15:58.606] Invalid receipt array RLP                hash=cd2491..d62de1 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-21|15:16:21.402] Invalid receipt array RLP                hash=da5fcf..5eeafb err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-21|15:16:21.409] Invalid receipt array RLP                hash=29407e..0bb360 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-21|15:16:35.497] Invalid receipt array RLP                hash=9e9dbc..d77521 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-21|15:16:35.505] Invalid receipt array RLP                hash=903b55..4d8dd4 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-21|15:16:45.844] Invalid receipt array RLP                hash=545c0a..079883 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-21|15:16:45.852] Invalid receipt array RLP                hash=b1d9c0..120402 err="rlp: expected input list for []*types.LogForStorage, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-21|15:17:12.928] Snapshot extension registration failed   peer=cacd63c6 err="peer connected on snap without compatible eth support"
ERROR[07-21|15:17:14.990] Snapshot extension registration failed   peer=d00dd05a err="peer connected on snap without compatible eth support"
ERROR[07-21|16:19:48.703] Transaction not found                    number=0xc11afe5de8 hash=8210d4..acc61a txhash=f22b2f..f7940b
ERROR[07-22|04:31:40.426] Snapshot extension registration failed   peer=59b61b14 err="peer connected on snap without compatible eth support"
ERROR[07-22|04:32:06.303] Snapshot extension registration failed   peer=4cc3f4a1 err="peer connected on snap without compatible eth support"

@shoenseiwaso
Copy link
Contributor

@rjl493456442 coming here from #22852. Let me see if we can indeed recompile with the diff you suggested there and will share the output here.

@rjl493456442
Copy link
Member

@shoenseiwaso I can confirm that the database compatibility is broken. Working on the fix now. Thanks!

@shoenseiwaso
Copy link
Contributor

shoenseiwaso commented Jul 22, 2021

@shoenseiwaso I can confirm that the database compatibility is broken. Working on the fix now. Thanks!

Got it! I ended up recompiling anyway. In case you still need it, here's some of the output:

ERROR[07-22|21:03:17.198] Invalid receipt array RLP                number=4  hash=0x0b0740268a6b0f7d575590d446f9645c6032eea8e6829839f43ddbb4e32ca4e6 err="rlp: expected input list for []*types.Log, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-22|21:03:17.198] Invalid receipt array RLP                number=13 hash=0x49f6ae9e3af6a3095ae1ac243cece88b6e42c708a605c43f8fb31c6a515c4ebd err="rlp: expected input list for []*types.Log, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-22|21:03:17.198] Invalid receipt array RLP                number=14 hash=0xee28818caa24964f118598d5b7de626032a5d73a7a9c5688e11144c544c32010 err="rlp: expected input list for []*types.Log, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-22|21:03:17.198] Invalid receipt array RLP                number=15 hash=0xbb7730af7942c62b84b20785e760dc4bc760be806bdf7bb72d6536120bdafc95 err="rlp: expected input list for []*types.Log, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-22|21:03:17.198] Invalid receipt array RLP                number=16 hash=0x5c8c4a72abb6fb60930c2c5e33b827311385bf1f2b91f53ca1e9110abce874bf err="rlp: expected input list for []*types.Log, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-22|21:03:17.198] Invalid receipt array RLP                number=17 hash=0xb5d1c055350becc941944ece9892aaea5d1cf45947bf0bdaf5b5b50f2d2a72dc err="rlp: expected input list for []*types.Log, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-22|21:03:17.198] Invalid receipt array RLP                number=18 hash=0xd2780c93500896df2ae8d530af5ce1c27098ae3259dd9060e35f0ba2ff040b7b err="rlp: expected input list for []*types.Log, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-22|21:03:17.198] Invalid receipt array RLP                number=19 hash=0xa4e0869a250099b46613f194d9d2a667717da9853a936f1f35021bb3bcccd0ce err="rlp: expected input list for []*types.Log, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-22|21:03:17.198] Invalid receipt array RLP                number=20 hash=0xd4ee947b55b3b51370fe550e8bdd83c3f02b18ddcd7e1e144efdc76c8f2482e1 err="rlp: expected input list for []*types.Log, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-22|21:03:17.199] Invalid receipt array RLP                number=21 hash=0x0cfa954a6fde43201254787ca6e1e328d50e4a56e70db22a0aab8d81a638c2bf err="rlp: expected input list for []*types.Log, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-22|21:03:17.199] Invalid receipt array RLP                number=23 hash=0xcf548a31264724b92e9548cb909bd5b331052668e7622da5ec6f5dedcb6cf746 err="rlp: expected input list for []*types.Log, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-22|21:03:17.199] Invalid receipt array RLP                number=24 hash=0x45b736921a5f8ccafc080b48e2517b2cff0cd2bfb4dc5d6500bcd8d56e0b7a17 err="rlp: expected input list for []*types.Log, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"
ERROR[07-22|21:03:17.199] Invalid receipt array RLP                number=25 hash=0xffdd6a5aa1037ec8bf6c52f039dbd45acd76d9fafa4944d650a79fe1f04c425d err="rlp: expected input list for []*types.Log, decoding into ([]*types.ReceiptForStorage)[0](types.storedReceiptRLP).Logs"

@rjl493456442
Copy link
Member

@shoenseiwaso @binary-tanya Can you guys please test this PR #23247? Hopefully it can fix the problem.

@shoenseiwaso
Copy link
Contributor

@shoenseiwaso @binary-tanya Can you guys please test this PR #23247? Hopefully it can fix the problem.

Just tried, it appears to fix it. Thanks!

@s1na
Copy link
Contributor

s1na commented Jan 10, 2022

@sahni-tanya @shoenseiwaso Hi! Do you by any chance still have those nodes that produced the errors? We have a PR #24028 which migrates the legacy receipts to the new format. I'd appreciate if somebody with a realistic database could try it and see if it works fine.

If you're willing to help with this, please make sure to make a backup of (at least) the receipt tables in the ancients, e.g.:

cp /path/to/ancients/receipts* backup-dir

When you start geth built against that PR you should get a warning that says there are legacy receipts in the db and asks you to do a freezer-migrate which you can do like:

./build/bin/geth --datadir /path/to/datadir db freezer-migrate

Running the same command should say no legacy receipts to convert. Can you please share the logs of freezer-migrate? and does the node seem to work ok when starting it after?

If you happened to have access to a node with a non-legacy database (e.g. a recently fast-synced node), you'll be able to verify the correctness of the migrated db via freezer-compare command which is to be found in this branch:

./build/bin/geth --datadir /path/to/migrated/datadir db freezer-compare /path/to/correct/datadir receipts

Please feel free to contact me Eth R&D or geth discord if you decided to try this out.

@shoenseiwaso
Copy link
Contributor

@s1na let me see if we can dig up an old chaindata to test this against!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants