We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f1434e commit 0fa24ceCopy full SHA for 0fa24ce
src/aleph/sdk/chains/sol.py
@@ -32,7 +32,7 @@ async def sign_message(self, message: Dict) -> Dict:
32
verif = get_verification_buffer(message)
33
sig = {
34
"publicKey": self.get_address(),
35
- "signature": self.sign_raw(verif),
+ "signature": await self.sign_raw(verif),
36
}
37
message["signature"] = json.dumps(sig)
38
return message
src/aleph/sdk/chains/tezos.py
@@ -27,7 +27,7 @@ async def sign_message(self, message: Dict) -> Dict:
27
28
29
"publicKey": self.get_public_key(),
30
31
0 commit comments