Skip to content

Commit

Permalink
Fix BytesDecoder
Browse files Browse the repository at this point in the history
  • Loading branch information
kclowes committed Sep 18, 2019
1 parent 1b98224 commit f82a19d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions web3/_utils/abi.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,6 @@ class ExactLengthBytesEncoder(encoding.BaseEncoder):
value_bit_size = None
data_byte_size = None
encode_fn = None
is_dynamic = True

def validate(self):
super().validate()
Expand Down Expand Up @@ -304,7 +303,6 @@ def from_type_str(cls, abi_type, registry):

class BytesDecoder(decoding.FixedByteSizeDecoder):
is_big_endian = False
is_dynamic = True

@staticmethod
def decoder_fn(data):
Expand Down

0 comments on commit f82a19d

Please sign in to comment.