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(
75
75
blockchainConfig = blockchainConfig
76
76
)
77
77
78
- override def blockGenerator =
78
+ override def blockGenerator : NoOmmersBlockGenerator =
79
79
new NoOmmersBlockGenerator (
80
80
blockchain,
81
81
blockchainConfig,
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ case class BlockchainConfig(
32
32
) {
33
33
val minRequireSignatures : Int = (Math .floor(checkpointPubKeys.size / 2 ) + 1 ).toInt
34
34
35
- def withUpdatedForkBlocks (update : (ForkBlockNumbers ) => ForkBlockNumbers ) =
35
+ def withUpdatedForkBlocks (update : (ForkBlockNumbers ) => ForkBlockNumbers ): BlockchainConfig =
36
36
copy(forkBlockNumbers = update(forkBlockNumbers))
37
37
}
38
38
You can’t perform that action at this time.
0 commit comments