RE: I Dunno... but I made a GitHub Repo
You are viewing a single comment's thread:
Great move! What exactly was the issue with beem key verification? Were you getting any specific error?
0
0
0.000
You are viewing a single comment's thread:
Great move! What exactly was the issue with beem key verification? Were you getting any specific error?
The key error is likely that it's wanting to use the active key for the actual transaction but you only have the posting wif loaded. I haven't looked at the code, but if you have it loaded from the wallet, add both keys to the wallet, if you care calling it this way:
Hive(keys=[posting_key])
you should do itHive(keys=[posting_key, active_key])
Also, the beem library is dated, which is why I have taken upon myself to update it and get it caught up with the times under a rebrand. If you would like to use my current iteration, it's listed as hive-nectar and is mostly 1:1 compatible with beem, just
from nectar.hive import Hive
etc instead of beem. Feel free to reach out if you would like.I'm going to try using both keys to verify it's not what I've done. I will look into Hive-Nectar, I'm a rookie so I'm trying to establish this. I'll check it out later this evening or tomorrow after work.