Skip to content

Commit

Permalink
Fetch from indexer correctly now that the fetch bug is fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
dangershony committed Dec 18, 2023
1 parent b66d40c commit ab8c016
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Angor/Server/FaucetController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public async Task<IActionResult> Send(string address, long? amount)
if (!PendingUtxo.Any())
{
// we assume a miner wallet so for now just ignore amounts and send a utxo to the request address
var utxos = await _indexerService.FetchUtxoAsync(addressInfo.Address, 510, 5);
var utxos = await _indexerService.FetchUtxoAsync(addressInfo.Address, 0, 20);

lock (PendingUtxo)
{
Expand Down

0 comments on commit ab8c016

Please sign in to comment.