Avoid Python-specific negative operation
This commit is contained in:
parent
a681163305
commit
96b71a19de
|
@ -307,7 +307,7 @@ def get_eth1_vote(state: BeaconState, eth1_chain: Sequence[Eth1Block]) -> Eth1Da
|
||||||
valid_votes = [vote for vote in state.eth1_data_votes if vote in votes_to_consider]
|
valid_votes = [vote for vote in state.eth1_data_votes if vote in votes_to_consider]
|
||||||
|
|
||||||
# Default vote on latest eth1 block data in the period range unless eth1 chain is not live
|
# Default vote on latest eth1 block data in the period range unless eth1 chain is not live
|
||||||
default_vote = votes_to_consider[-1] if any(votes_to_consider) else state.eth1_data
|
default_vote = votes_to_consider[len(votes_to_consider) - 1] if any(votes_to_consider) else state.eth1_data
|
||||||
|
|
||||||
return max(
|
return max(
|
||||||
valid_votes,
|
valid_votes,
|
||||||
|
|
|
@ -229,9 +229,11 @@ Given one set of data, return the custody atoms: each atom will be combined with
|
||||||
|
|
||||||
```python
|
```python
|
||||||
def get_custody_atoms(bytez: bytes) -> Sequence[bytes]:
|
def get_custody_atoms(bytez: bytes) -> Sequence[bytes]:
|
||||||
bytez += b'\x00' * (-len(bytez) % BYTES_PER_CUSTODY_ATOM) # right-padding
|
bytez += b'\x00' * ((BYTES_PER_CUSTODY_ATOM - len(bytez)) % BYTES_PER_CUSTODY_ATOM) # right-padding
|
||||||
return [bytez[i:i + BYTES_PER_CUSTODY_ATOM]
|
return [
|
||||||
for i in range(0, len(bytez), BYTES_PER_CUSTODY_ATOM)]
|
bytez[i:i + BYTES_PER_CUSTODY_ATOM]
|
||||||
|
for i in range(0, len(bytez), BYTES_PER_CUSTODY_ATOM)
|
||||||
|
]
|
||||||
```
|
```
|
||||||
|
|
||||||
### `get_custody_secrets`
|
### `get_custody_secrets`
|
||||||
|
|
Loading…
Reference in New Issue