Skip to content

Commit

Permalink
Merge pull request #872 from DarkFlorist/make-nethermind-eth-simulate…
Browse files Browse the repository at this point in the history
…-functional

make experimental nethermind functional
  • Loading branch information
KillariDev authored Feb 27, 2024
2 parents f6aa137 + 58cd346 commit e3f29b7
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions app/ts/types/multicall-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,13 @@ export const CallResultLog = funtypes.Intersect(
funtypes.ReadonlyObject({
logIndex: EthereumQuantity,
address: EthereumAddress,
blockHash: EthereumQuantity,
blockHash: EthereumBytes32,
blockNumber: EthereumQuantity,
data: EthereumData,
topics: funtypes.ReadonlyArray(EthereumBytes32),
transactionHash: EthereumQuantity,
}),
funtypes.ReadonlyPartial({ // these are not optional in the spec, but they are not standard for logs
transactionHash: EthereumBytes32,
transactionIndex: EthereumQuantity,
})
)
Expand Down Expand Up @@ -120,7 +122,7 @@ export const ExecutionSpec383MultiCallCallResults = funtypes.ReadonlyArray(funty
export type ExecutionSpec383MultiCallBlockResult = funtypes.Static<typeof ExecutionSpec383MultiCallBlockResult>
export const ExecutionSpec383MultiCallBlockResult = funtypes.ReadonlyObject({
number: EthereumQuantity,
hash: EthereumQuantity,
hash: EthereumBytes32,
timestamp: EthereumQuantity,
prevRandao: EthereumQuantity,
gasLimit: EthereumQuantitySmall,
Expand Down

0 comments on commit e3f29b7

Please sign in to comment.