mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 07:06:42 +00:00
removed PSP comment
This commit is contained in:
parent
193aee0063
commit
adce0e8235
3 changed files with 0 additions and 4 deletions
|
|
@ -2084,7 +2084,6 @@ func MakeChain(ctx *cli.Context, stack *node.Node) (chain *core.BlockChain, chai
|
|||
|
||||
// TODO(rjl493456442) disable snapshot generation/wiping if the chain is read only.
|
||||
// Disable transaction indexing/unindexing by default.
|
||||
// PSP - Check for config.ParallelEVM.Enable here?
|
||||
chain, err = core.NewBlockChain(chainDb, cache, config, engine, vmcfg, nil, nil, nil)
|
||||
if err != nil {
|
||||
Fatalf("Can't create BlockChain: %v", err)
|
||||
|
|
|
|||
|
|
@ -39,8 +39,6 @@ func TestStatusBasics(t *testing.T) {
|
|||
|
||||
s.markComplete(x)
|
||||
require.False(t, s.checkInProgress(4))
|
||||
// PSP - is this correct? {s.maxAllComplete() -> 2}
|
||||
// s -> {[5 6 7 8 9] [3] [0 1 2 4] map[] map[]}
|
||||
require.Equal(t, 2, s.maxAllComplete(), "zero should still be min complete")
|
||||
|
||||
exp := []int{1, 2}
|
||||
|
|
|
|||
|
|
@ -108,7 +108,6 @@ type Ethereum struct {
|
|||
shutdownTracker *shutdowncheck.ShutdownTracker // Tracks if and when the node has shutdown ungracefully
|
||||
}
|
||||
|
||||
// PSP
|
||||
// New creates a new Ethereum object (including the
|
||||
// initialisation of the common Ethereum object)
|
||||
func New(stack *node.Node, config *ethconfig.Config) (*Ethereum, error) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue