Skip to content

Commit

Permalink
Use the definite txo.amount (not EVERYTHING) when calling save_claims().
Browse files Browse the repository at this point in the history
  • Loading branch information
moodyjon committed Jun 9, 2022
1 parent 04c7bdf commit 9e9d511
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lbry/extras/daemon/daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -2780,7 +2780,7 @@ async def jsonrpc_channel_create(
wallet.save()
await self.broadcast_or_release(tx, blocking)
self.component_manager.loop.create_task(self.storage.save_claims([self._old_get_temp_claim_info(
tx, txo, claim_address, claim, name, dewies_to_lbc(amount)
tx, txo, claim_address, claim, name
)]))
self.component_manager.loop.create_task(self.analytics_manager.send_new_channel())
else:
Expand Down Expand Up @@ -2940,7 +2940,7 @@ async def jsonrpc_channel_update(
wallet.save()
await self.broadcast_or_release(tx, blocking)
self.component_manager.loop.create_task(self.storage.save_claims([self._old_get_temp_claim_info(
tx, new_txo, claim_address, new_txo.claim, new_txo.claim_name, dewies_to_lbc(amount)
tx, new_txo, claim_address, new_txo.claim, new_txo.claim_name
)]))
self.component_manager.loop.create_task(self.analytics_manager.send_new_channel())
else:
Expand Down Expand Up @@ -3542,7 +3542,7 @@ async def jsonrpc_stream_create(

async def save_claims():
await self.storage.save_claims([self._old_get_temp_claim_info(
tx, new_txo, claim_address, claim, name, dewies_to_lbc(amount)
tx, new_txo, claim_address, claim, name
)])
if file_path is not None:
await self.storage.save_content_claim(file_stream.stream_hash, new_txo.id)
Expand Down Expand Up @@ -3780,7 +3780,7 @@ async def jsonrpc_stream_update(

async def save_claims():
await self.storage.save_claims([self._old_get_temp_claim_info(
tx, new_txo, claim_address, new_txo.claim, new_txo.claim_name, dewies_to_lbc(amount)
tx, new_txo, claim_address, new_txo.claim, new_txo.claim_name
)])
if stream_hash:
await self.storage.save_content_claim(stream_hash, new_txo.id)
Expand Down Expand Up @@ -5501,11 +5501,11 @@ async def resolve(self, accounts, urls, **kwargs):
return results

@staticmethod
def _old_get_temp_claim_info(tx, txo, address, claim_dict, name, bid):
def _old_get_temp_claim_info(tx, txo, address, claim_dict, name):
return {
"claim_id": txo.claim_id,
"name": name,
"amount": bid,
"amount": dewies_to_lbc(txo.amount),
"address": address,
"txid": tx.id,
"nout": txo.position,
Expand Down

0 comments on commit 9e9d511

Please sign in to comment.