Skip to content

Commit

Permalink
fix camel casing
Browse files Browse the repository at this point in the history
Signed-off-by: Danno Ferrin <[email protected]>
  • Loading branch information
shemnon committed Sep 25, 2023
1 parent d361cac commit cf14e12
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -868,7 +868,7 @@ public EVMExecutor number(final long number) {
* SimpleBlockValues}
*/
public EVMExecutor timestamp(final long timestamp) {
((SimpleBlockValues) this.blockValues).setTimeStamp(timestamp);
((SimpleBlockValues) this.blockValues).setTimestamp(timestamp);
return this;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class SimpleBlockValues implements BlockValues {
Bytes32 mixHasOrPrevRandao = Bytes32.ZERO;
Optional<Wei> baseFee = Optional.empty();
long number = 1;
long timeStamp = 1;
long timestamp = 1;
long gasLimit = Long.MAX_VALUE;

@Override
Expand Down Expand Up @@ -68,12 +68,13 @@ public void setNumber(final long number) {
this.number = number;
}

public long getTimeStamp() {
return timeStamp;
@Override
public long getTimestamp() {
return timestamp;
}

public void setTimeStamp(final long timeStamp) {
this.timeStamp = timeStamp;
public void setTimestamp(final long timeStamp) {
this.timestamp = timeStamp;
}

@Override
Expand Down

0 comments on commit cf14e12

Please sign in to comment.