Skip to content
Snippets Groups Projects
Commit 3e6944d0 authored by pavel.sidorenko's avatar pavel.sidorenko
Browse files

Fix: changed hash type

parent 726ff2bb
No related merge requests found
......@@ -125,10 +125,10 @@ class CellframeBaseTransactionDatum:
def emission(self):
if not self.emission_:
tiker = str(self.tx_token().ticker)
hf = HashFast.fromString(str(self.tx_token().tokenEmissionHash))
#tiker = str(self.tx_token().ticker)
h = str(self.tx_token().tokenEmissionHash)
ledger = self.net.getLedger()
ems = ledger.tokenEmissionFind(hf)
ems = ledger.tokenEmissionFind(h)
if not ems:
return None
self.emission_ = CellframeEmission(ems)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment