Compare commits
6 Commits
c751c1afb3
...
a468e47c13
Author | SHA1 | Date | |
---|---|---|---|
a468e47c13 | |||
a04f71df2b | |||
2115770095 | |||
3cd43e8d14 | |||
e6150910af | |||
cd195a0fc0 |
2
go.mod
2
go.mod
@ -140,6 +140,6 @@ require (
|
|||||||
)
|
)
|
||||||
|
|
||||||
replace (
|
replace (
|
||||||
github.com/ethereum/go-ethereum => git.vdb.to/cerc-io/plugeth v1.13.14-cerc-0.0.20240403060251-5c11ceee961c
|
github.com/ethereum/go-ethereum => git.vdb.to/cerc-io/plugeth v1.13.14-cerc-2
|
||||||
github.com/openrelayxyz/plugeth-utils => git.vdb.to/cerc-io/plugeth-utils v1.5.0-cerc-1
|
github.com/openrelayxyz/plugeth-utils => git.vdb.to/cerc-io/plugeth-utils v1.5.0-cerc-1
|
||||||
)
|
)
|
||||||
|
4
go.sum
4
go.sum
@ -1,6 +1,6 @@
|
|||||||
cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
|
cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
|
||||||
git.vdb.to/cerc-io/plugeth v1.13.14-cerc-0.0.20240403060251-5c11ceee961c h1:BfsQTeCvaKLaymajXYI8NkVHpolYK55S+ZojaZlrxh4=
|
git.vdb.to/cerc-io/plugeth v1.13.14-cerc-2 h1:wUnIMCUP+e/F6f/JA1Ui51AagmYkxctEcyg66QJJj0o=
|
||||||
git.vdb.to/cerc-io/plugeth v1.13.14-cerc-0.0.20240403060251-5c11ceee961c/go.mod h1:touuog/Plo0RUMY5E92eO/vqvQuUaPNsUkwNxr5qePM=
|
git.vdb.to/cerc-io/plugeth v1.13.14-cerc-2/go.mod h1:sUMNKCsvK1Afdogl+n8QTm9hmCX4fa0X3SqE+xru89k=
|
||||||
git.vdb.to/cerc-io/plugeth-utils v1.5.0-cerc-1 h1:WMdo9Pb5lAn0e2WC1CcD6/mRTWwU0r2KjFoEh0mh2rs=
|
git.vdb.to/cerc-io/plugeth-utils v1.5.0-cerc-1 h1:WMdo9Pb5lAn0e2WC1CcD6/mRTWwU0r2KjFoEh0mh2rs=
|
||||||
git.vdb.to/cerc-io/plugeth-utils v1.5.0-cerc-1/go.mod h1:Wf47tlE95PHZto1PMFRlmQAf98MBoNSRbwnQxeq0+Z0=
|
git.vdb.to/cerc-io/plugeth-utils v1.5.0-cerc-1/go.mod h1:Wf47tlE95PHZto1PMFRlmQAf98MBoNSRbwnQxeq0+Z0=
|
||||||
github.com/AndreasBriese/bbloom v0.0.0-20190306092124-e2d15f34fcf9/go.mod h1:bOvUY6CB00SOBii9/FifXqc0awNKxLFCL/+pkDPuyl8=
|
github.com/AndreasBriese/bbloom v0.0.0-20190306092124-e2d15f34fcf9/go.mod h1:bOvUY6CB00SOBii9/FifXqc0awNKxLFCL/+pkDPuyl8=
|
||||||
|
@ -37,7 +37,7 @@ const (
|
|||||||
MEthStorageTrie = 0x98
|
MEthStorageTrie = 0x98
|
||||||
MEthLogTrie = 0x99
|
MEthLogTrie = 0x99
|
||||||
MEthLog = 0x9a
|
MEthLog = 0x9a
|
||||||
MEthWithdrawal = 0x9b // TODO
|
MEthWithdrawal = 0x9b // TODO add to multicodec registry
|
||||||
)
|
)
|
||||||
|
|
||||||
// RawdataToCid takes the desired codec and a slice of bytes
|
// RawdataToCid takes the desired codec and a slice of bytes
|
||||||
|
@ -825,7 +825,7 @@ func (sds *Service) writeStateDiff(block *types.Block, parentRoot common.Hash, p
|
|||||||
}
|
}
|
||||||
defer tx.RollbackOnFailure(err)
|
defer tx.RollbackOnFailure(err)
|
||||||
|
|
||||||
// TODO: review/remove the need to sync here
|
// TODO: review necessity of locking here
|
||||||
var nodeMtx, ipldMtx sync.Mutex
|
var nodeMtx, ipldMtx sync.Mutex
|
||||||
nodeSink := func(node types2.StateLeafNode) error {
|
nodeSink := func(node types2.StateLeafNode) error {
|
||||||
defer metrics.UpdateDuration(time.Now(), metrics.IndexerMetrics.OutputTimer)
|
defer metrics.UpdateDuration(time.Now(), metrics.IndexerMetrics.OutputTimer)
|
||||||
|
@ -2,7 +2,7 @@ version: "1.2"
|
|||||||
name: fixturenet-plugeth-tx
|
name: fixturenet-plugeth-tx
|
||||||
description: "Plugeth Ethereum Fixturenet for testing plugeth-statediff"
|
description: "Plugeth Ethereum Fixturenet for testing plugeth-statediff"
|
||||||
repos:
|
repos:
|
||||||
- git.vdb.to/cerc-io/plugeth@statediff-patches # todo: dev
|
- git.vdb.to/cerc-io/plugeth@v1.13.14-cerc-2
|
||||||
- git.vdb.to/cerc-io/plugeth-statediff
|
- git.vdb.to/cerc-io/plugeth-statediff
|
||||||
- git.vdb.to/cerc-io/lighthouse
|
- git.vdb.to/cerc-io/lighthouse
|
||||||
- git.vdb.to/cerc-io/ipld-eth-db@add-withdrawals # todo
|
- git.vdb.to/cerc-io/ipld-eth-db@add-withdrawals # todo
|
||||||
|
Loading…
Reference in New Issue
Block a user