zhiqiangxu
zhiqiangxu
This makes the naming consistent with [built-actors side](https://github.com/filecoin-project/builtin-actors/blob/f414380b417bcdcab859ba5efd55fc085a83358f/actors/miner/src/state.rs#L1278-L1279).
Foundry can compile successfully but vscode is prompting: `Undeclared identifier. Did you mean "blockhash"?(7576)`: This error is the same error I get from foundry if `evm_version` is not configured [here](https://github.com/zhiqiangxu/es-op-batchinbox/blob/ff5700fefe97a80c4f358758bb9f81dd4691fad0/foundry.toml#L10)....
## Problem statement It seems go-swagger doesn't work properly for group type, it's a follow up of issue [1890](https://github.com/go-swagger/go-swagger/issues/1890), since it's closed I think a new issue is deserved. Actually...
No need for `continue` since it's already at the end.
Quoted from [here](https://github.com/ethereum/consensus-specs/blob/dev/specs/deneb/p2p-interface.md): > Clients MUST support requesting sidecars since minimum_request_epoch, where minimum_request_epoch = max(finalized_epoch, current_epoch - MIN_EPOCHS_FOR_BLOB_SIDECARS_REQUESTS, DENEB_FORK_EPOCH). What happens if clients don't support requesting sidecars at all for...
`pow_vartime([n, 0, 0, 0] == pow_vartime([n]` always holds, so it seems there's no point in wasting resource computing `pow_vartime([n, 0, 0, 0] ` instead of `pow_vartime([n]`.
If `extended_k > S`, the for loop will do nothing: ``` for _ in extended_k..F::S { extended_omega = extended_omega.square(); } ``` and `extended_omega` will be left as `F::ROOT_OF_UNITY`, which is...