Skip to content

Commit

Permalink
blob
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan <[email protected]>
  • Loading branch information
pinges committed Aug 14, 2023
1 parent c5ee967 commit af0f058
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ public String getNonce() {
* @return the excess data gas
*/
public String getExcessDataGas() {
return JsonUtil.getValueAsString(configRoot, "excessdatagas", "0x0");
return JsonUtil.getValueAsString(configRoot, "excessBlobGas", "0x0");
}

/**
Expand All @@ -274,7 +274,7 @@ public String getParentBeaconBlockRoot() {
* @return the data gas used
*/
public String getDataGasUsed() {
return JsonUtil.getValueAsString(configRoot, "datagasused", "0x0");
return JsonUtil.getValueAsString(configRoot, "blobGasUsed", "0x0");
}

/**
Expand Down

0 comments on commit af0f058

Please sign in to comment.