File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/main/scala/io/iohk/ethereum Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ class TestmodeConsensus(
7575 blockchainConfig = blockchainConfig
7676 )
7777
78- override def blockGenerator =
78+ override def blockGenerator : NoOmmersBlockGenerator =
7979 new NoOmmersBlockGenerator (
8080 blockchain,
8181 blockchainConfig,
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ case class BlockchainConfig(
3232) {
3333 val minRequireSignatures : Int = (Math .floor(checkpointPubKeys.size / 2 ) + 1 ).toInt
3434
35- def withUpdatedForkBlocks (update : (ForkBlockNumbers ) => ForkBlockNumbers ) =
35+ def withUpdatedForkBlocks (update : (ForkBlockNumbers ) => ForkBlockNumbers ): BlockchainConfig =
3636 copy(forkBlockNumbers = update(forkBlockNumbers))
3737}
3838
You can’t perform that action at this time.
0 commit comments