We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 886806e commit 65b170aCopy full SHA for 65b170a
bitshares/memo.py
@@ -26,7 +26,7 @@ class Memo(object):
26
27
from bitshares.memo import Memo
28
m = Memo("bitshareseu", "wallet.xeroc")
29
- m.bitshares.wallet.unlock("secret")
+ m.blockchain.wallet.unlock("secret")
30
enc = (m.encrypt("foobar"))
31
print(enc)
32
>> {'nonce': '17329630356955254641', 'message': '8563e2bb2976e0217806d642901a2855'}
@@ -39,7 +39,7 @@ class Memo(object):
39
40
41
m = Memo()
42
43
print(memo.decrypt(op_data["memo"]))
44
45
if ``op_data`` being the payload of a transfer operation.
0 commit comments