Test removing all the Bytes objects
This commit is contained in:
parent
d804cb307b
commit
7a71919c53
|
@ -61,7 +61,6 @@ The head block root associated with a `store` is defined as `get_head(store)`. A
|
||||||
@dataclass
|
@dataclass
|
||||||
class Target(object):
|
class Target(object):
|
||||||
epoch: Epoch
|
epoch: Epoch
|
||||||
root: Bytes32
|
|
||||||
```
|
```
|
||||||
|
|
||||||
#### `Store`
|
#### `Store`
|
||||||
|
@ -69,12 +68,8 @@ class Target(object):
|
||||||
```python
|
```python
|
||||||
@dataclass
|
@dataclass
|
||||||
class Store(object):
|
class Store(object):
|
||||||
blocks: Dict[Bytes32, BeaconBlock] = field(default_factory=dict)
|
|
||||||
states: Dict[Bytes32, BeaconState] = field(default_factory=dict)
|
|
||||||
time: int = 0
|
time: int = 0
|
||||||
latest_targets: Dict[ValidatorIndex, Target] = field(default_factory=dict)
|
latest_targets: Dict[ValidatorIndex, Target] = field(default_factory=dict)
|
||||||
justified_root: Bytes32 = 0x0
|
|
||||||
finalized_root: Bytes32 = 0x0
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### Helpers
|
### Helpers
|
||||||
|
|
Loading…
Reference in New Issue