File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -196,7 +196,7 @@ class StakeInfo:
196
196
def decode_vec (encoded : bytes ) -> List ["StakeInfo" ]:
197
197
pass
198
198
@staticmethod
199
- def decode_vec_tuple_vec (encoded : bytes ) -> List [Tuple [str , List ["StakeInfo" ]]]:
199
+ def decode_vec_tuple_vec (encoded : bytes ) -> List [Tuple [bytes , List ["StakeInfo" ]]]:
200
200
pass
201
201
202
202
class DelegateInfo :
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ def test_decode_vec_matches_python_impl(self):
88
88
89
89
def test_decode_vec_vec_matches_python_impl (self ):
90
90
stake_info_list : List [
91
- Tuple [str , List [bt_decode .StakeInfo ]]
91
+ Tuple [bytes , List [bt_decode .StakeInfo ]]
92
92
] = bt_decode .StakeInfo .decode_vec_tuple_vec (
93
93
bytes .fromhex (TEST_STAKE_INFO_HEX ["vec vec normal" ])
94
94
)
You can’t perform that action at this time.
0 commit comments