Skip to content

Commit

Permalink
chore(message): update
Browse files Browse the repository at this point in the history
  • Loading branch information
miladtsx committed Dec 10, 2024
1 parent deebf8d commit 171eb89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/valory/skills/learning_abci/behaviours.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def async_act(self) -> Generator:

if not len(new_settled_invoices_uuids):
self.context.logger.info(
"All invoices are already settled; nothing to do"
"NO NEW SETTLED INVOICE FOUND; nothing to do"
) # TODO return to the previosu round (CollectInvoicesRound).
# currently, when no newly settled invoices, agent just passes to the next round with an empty settled_invoices_uuid payload.
# instead we should return back to the CollectInvoicesRound. but currently I don't know how to implement this.
Expand Down Expand Up @@ -401,7 +401,7 @@ def _sender_act(self) -> Generator[None, None, None]:
if invoice.uuid in settled_invoices_uuid:
# inform the business via the webhook
invoice.is_settled = yield from self._call_webhook(invoice.uuid)
self.context.logger.info(f"INVOICE {invoice.uuid} PROCESSED; is_settled: {invoice.is_settled}")
self.context.logger.info(f"INVOICE {invoice.uuid} PROCESSED")

self.update_mock_invoices_bulk(all_unsettled_invoices)

Expand Down

0 comments on commit 171eb89

Please sign in to comment.