Skip to content

Commit

Permalink
Fixing test
Browse files Browse the repository at this point in the history
  • Loading branch information
nagarev committed Nov 10, 2023
1 parent 97e1cc6 commit 8db7727
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,10 @@ public DataWord getCallerAddress() {
}

/* GASPRICE op */
public DataWord getMinGasPrice() {
public DataWord getTxGasPrice() {

Check notice

Code scanning / CodeQL

Missing Override annotation Note test

This method overrides
ProgramInvoke.getTxGasPrice
; it is advisable to add an Override annotation.

byte[] minGasPrice = Hex.decode("09184e72a000");
return DataWord.valueOf(minGasPrice);
byte[] txGasPrice = Hex.decode("09184e72a000");
return DataWord.valueOf(txGasPrice);
}

/* GAS op */
Expand Down

0 comments on commit 8db7727

Please sign in to comment.