Skip to content

Commit

Permalink
Fix identifier style error
Browse files Browse the repository at this point in the history
  • Loading branch information
jangko committed Oct 15, 2024
1 parent 04e9243 commit 83284ea
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions tests/test_execution_types.nim
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ suite "Execution types tests":
)

blobs = BlobsBundleV1(
commitments: @[KZGCommitment.conv(1)],
proofs: @[KZGProof.conv(2)],
commitments: @[KzgCommitment.conv(1)],
proofs: @[KzgProof.conv(2)],
blobs: @[Blob.conv(3)],
)

Expand Down
4 changes: 2 additions & 2 deletions web3/engine_api_types.nim
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ type

# https://github.com/ethereum/execution-apis/blob/v1.0.0-beta.4/src/engine/cancun.md#blobsbundlev1
BlobsBundleV1* = object
commitments*: seq[KZGCommitment]
proofs*: seq[KZGProof]
commitments*: seq[KzgCommitment]
proofs*: seq[KzgProof]
blobs*: seq[Blob]

# https://github.com/ethereum/execution-apis/blob/v1.0.0-beta.4/src/engine/shanghai.md#executionpayloadbodyv1
Expand Down
4 changes: 2 additions & 2 deletions web3/eth_api_types.nim
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ type

# EIP-4844 blob sidecars
blobs*: Opt[seq[Blob]]
commitments*: Opt[seq[KZGCommitment]]
proofs*: Opt[seq[KZGProof]]
commitments*: Opt[seq[KzgCommitment]]
proofs*: Opt[seq[KzgProof]]

# EIP-7702
authorizationList*: Opt[seq[AuthorizationObject]]
Expand Down

0 comments on commit 83284ea

Please sign in to comment.