From adce0e823527da26822a4076e1a977c6bc6e6d00 Mon Sep 17 00:00:00 2001 From: Pratik Patil Date: Wed, 10 May 2023 10:33:43 +0530 Subject: [PATCH] removed PSP comment --- cmd/utils/flags.go | 1 - core/blockstm/status_test.go | 2 -- eth/backend.go | 1 - 3 files changed, 4 deletions(-) diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index d9b2ad4820..1772913c0e 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -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) diff --git a/core/blockstm/status_test.go b/core/blockstm/status_test.go index d76ebaba04..aff00d9a2f 100644 --- a/core/blockstm/status_test.go +++ b/core/blockstm/status_test.go @@ -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} diff --git a/eth/backend.go b/eth/backend.go index 2d4353d68b..10386bfb6b 100644 --- a/eth/backend.go +++ b/eth/backend.go @@ -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) {