Skip to content

Commit 0599fee

Browse files
committed
chore: update message for get heaviest allocation
Signed-off-by: Gustavo Inacio <[email protected]>
1 parent e61ad31 commit 0599fee

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

0 commit comments

Comments
 (0)