Skip to content
This repository has been archived by the owner on Aug 8, 2018. It is now read-only.

Commit

Permalink
fix RLPData
Browse files Browse the repository at this point in the history
  • Loading branch information
heikoheiko committed Apr 20, 2015
1 parent bcb0b9a commit a242ed0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyethapp/eth_protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ class blocks(BaseProtocol.command):

@classmethod
def encode_payload(cls, list_of_rlp):
return rlp.encode([rlp.codec.RawRLP(x) for x in list_of_rlp], infer_serializer=False)
return rlp.encode([rlp.codec.RLPData(x) for x in list_of_rlp], infer_serializer=False)

@classmethod
def decode_payload(cls, rlp_data):
Expand Down

0 comments on commit a242ed0

Please sign in to comment.