Skip to content

Commit

Permalink
Fix typo in ProtocolScheduleBuilder (#1840)
Browse files Browse the repository at this point in the history
Fix typo in word originalProtocolSpec

Signed-off-by: hp <hp_ctt@gmail.com>

Co-authored-by: Sally MacFarlane <sally.macfarlane@consensys.net>
  • Loading branch information
helderjnpinto and macfarla authored Jan 27, 2021
1 parent d8b05d3 commit 1a9669d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ public ProtocolSchedule createProtocolSchedule() {
.getClassicForkBlock()
.ifPresent(
classicBlockNumber -> {
final ProtocolSpec originalProtocolSpce =
final ProtocolSpec originalProtocolSpec =
protocolSchedule.getByBlockNumber(classicBlockNumber);
addProtocolSpec(
protocolSchedule,
Expand All @@ -230,7 +230,7 @@ public ProtocolSchedule createProtocolSchedule() {
config.getContractSizeLimit(),
config.getEvmStackSize(),
quorumCompatibilityMode));
protocolSchedule.putMilestone(classicBlockNumber + 1, originalProtocolSpce);
protocolSchedule.putMilestone(classicBlockNumber + 1, originalProtocolSpec);
});

addProtocolSpec(
Expand Down

0 comments on commit 1a9669d

Please sign in to comment.