Skip to content

Commit

Permalink
remove unnecessary defn of null
Browse files Browse the repository at this point in the history
  • Loading branch information
ralexstokes committed May 28, 2021
1 parent ef9b712 commit b763416
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions ssz/simple-serialize.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
- [Serialization](#serialization)
- [`uintN`](#uintn)
- [`boolean`](#boolean)
- [`null`](#null)
- [`Bitvector[N]`](#bitvectorn)
- [`Bitlist[N]`](#bitlistn)
- [Vectors, containers, lists](#vectors-containers-lists)
Expand Down Expand Up @@ -123,12 +122,6 @@ assert value in (True, False)
return b"\x01" if value is True else b"\x00"
```

### `null`

```python
return b""
```

### `Bitvector[N]`

```python
Expand Down

0 comments on commit b763416

Please sign in to comment.