Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 1/state_vars_and_ints.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ State variables are permanently stored in contract storage. This means they're w
storedData: int128
```

In this example contract, we created a [`int128`](https://vyper.readthedocs.io/en/stable/types.html#signed-integer-128-bit) called `storedData` which holds a _default_ value of `1`.
In this example contract, we created a [`int128`](https://vyper.readthedocs.io/en/stable/types.html#signed-integer-128-bit) called `storedData` which holds a _default_ value of `0`.

## Unsigned Integers: `uint256`

Expand Down
4 changes: 2 additions & 2 deletions 2/empty.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ Here you can find a list of all types and default values:
| bool | False |
| bytes32 | 0x0000000000000000000000000000000000000000000000000000000000000000 |
| decimal | 0.0 |
| int128 | 1 |
| uint256 | 1 |
| int128 | 0 |
| uint256 | 0 |

## Put it to the test

Expand Down