Skip to content

Commit 721923d

Browse files
DistributedDogeSamWilsn
authored andcommitted
Use type alias instead of raw type
1 parent 2aa4004 commit 721923d

File tree

17 files changed

+17
-17
lines changed

17 files changed

+17
-17
lines changed

src/ethereum/arrow_glacier/fork_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class Account:
3636

3737
nonce: Uint
3838
balance: U256
39-
code: bytes
39+
code: Bytes
4040

4141

4242
EMPTY_ACCOUNT = Account(

src/ethereum/berlin/fork_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class Account:
3636

3737
nonce: Uint
3838
balance: U256
39-
code: bytes
39+
code: Bytes
4040

4141

4242
EMPTY_ACCOUNT = Account(

src/ethereum/byzantium/fork_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class Account:
3535

3636
nonce: Uint
3737
balance: U256
38-
code: bytes
38+
code: Bytes
3939

4040

4141
EMPTY_ACCOUNT = Account(

src/ethereum/cancun/fork_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class Account:
3737

3838
nonce: Uint
3939
balance: U256
40-
code: bytes
40+
code: Bytes
4141

4242

4343
EMPTY_ACCOUNT = Account(

src/ethereum/constantinople/fork_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class Account:
3636

3737
nonce: Uint
3838
balance: U256
39-
code: bytes
39+
code: Bytes
4040

4141

4242
EMPTY_ACCOUNT = Account(

src/ethereum/dao_fork/fork_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class Account:
3636

3737
nonce: Uint
3838
balance: U256
39-
code: bytes
39+
code: Bytes
4040

4141

4242
EMPTY_ACCOUNT = Account(

src/ethereum/frontier/fork_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class Account:
3636

3737
nonce: Uint
3838
balance: U256
39-
code: bytes
39+
code: Bytes
4040

4141

4242
EMPTY_ACCOUNT = Account(

src/ethereum/gray_glacier/fork_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class Account:
3636

3737
nonce: Uint
3838
balance: U256
39-
code: bytes
39+
code: Bytes
4040

4141

4242
EMPTY_ACCOUNT = Account(

src/ethereum/homestead/fork_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class Account:
3636

3737
nonce: Uint
3838
balance: U256
39-
code: bytes
39+
code: Bytes
4040

4141

4242
EMPTY_ACCOUNT = Account(

src/ethereum/istanbul/fork_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class Account:
3636

3737
nonce: Uint
3838
balance: U256
39-
code: bytes
39+
code: Bytes
4040

4141

4242
EMPTY_ACCOUNT = Account(

0 commit comments

Comments
 (0)