Skip to content

Commit

Permalink
fix blobFeeCap type lens path
Browse files Browse the repository at this point in the history
Signed-off-by: Pranay Valson <[email protected]>
  • Loading branch information
noslav committed Mar 27, 2024
1 parent a4fe1ad commit bd51e84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/utils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ func UnwrapAvroUnion(data map[string]interface{}) map[string]interface{} {
unwrapType(data, blobGasUsedLens, "int")
unwrapType(data, excessBlobGasLens, "int")
unwrapType(data, parentBeaconRootLens, "string")
unwrapType(data, blobFeeCapLens, "int")
unwrapType(data, blobFeeCapLens, "bytes")
unwrapType(data, blobHashesLens, "array")
unwrapType(data, blobGasLens, "int")
unwrapType(data, blobTxSidecarLens, "array")
Expand Down Expand Up @@ -275,7 +275,7 @@ func MapToAvroUnion(data map[string]interface{}) map[string]interface{} {
wrapType(data, blobGasUsedLens, "int")
wrapType(data, excessBlobGasLens, "int")
wrapType(data, parentBeaconRootLens, "string")
wrapType(data, blobFeeCapLens, "int")
wrapType(data, blobFeeCapLens, "bytes")
wrapType(data, blobHashesLens, "array")
wrapType(data, blobGasLens, "int")
wrapType(data, blobTxSidecarLens, "array")
Expand Down

0 comments on commit bd51e84

Please sign in to comment.