Skip to content

Commit 6e6a010

Browse files
committed
chore: update error message
Signed-off-by: Gustavo Inacio <[email protected]>
1 parent c59b64f commit 6e6a010

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

tap-agent/src/agent/sender_account.rs

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,13 @@ impl State {
198198
async fn rav_requester_single(&mut self) -> Result<()> {
199199
let Some(allocation_id) = self.sender_fee_tracker.get_heaviest_allocation_id() else {
200200
anyhow::bail!(
201-
"Error while getting the heaviest allocation because \
202-
no unblocked allocation has enough unaggregated fees tracked"
201+
"Error while getting the heaviest allocation, \
202+
this is due one of the following reasons: \n
203+
1. allocations have too much fees under their buffer\n
204+
2. allocations are blocked to be redeemed due to ongoing last rav. \n
205+
If you keep seeing this message try to increase your `amount_willing_to_lose` \
206+
and restart your `tap-agent`\n
207+
If this doesn't work, open an issue on our Github."
203208
);
204209
};
205210
let sender_allocation_id = self.format_sender_allocation(&allocation_id);

0 commit comments

Comments
 (0)