Add missing param in middleware for sign

This commit is contained in:
nolash
2020-12-25 12:53:16 +01:00
parent 07bdbe9999
commit 0afacff6c6
5 changed files with 7 additions and 2 deletions

View File

@@ -90,6 +90,7 @@ class TestSign(unittest.TestCase):
def test_sign_message(self):
s = ReferenceSigner(self.pk_getter)
z = s.signEthereumMessage(tx_ints['from'], 'foo')
z = s.signEthereumMessage(tx_ints['from'], b'foo')
if __name__ == '__main__':