removed PSP comment

This commit is contained in:
Pratik Patil 2023-05-10 10:33:43 +05:30
parent 193aee0063
commit adce0e8235
No known key found for this signature in database
GPG key ID: D883140B4FA928F6
3 changed files with 0 additions and 4 deletions

View file

@ -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)

View file

@ -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}

View file

@ -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) {