Skip to content

Commit

Permalink
Fix mock readUnconfirmedAsync
Browse files Browse the repository at this point in the history
  • Loading branch information
BewareMyPower committed Aug 9, 2024
1 parent c14b699 commit cb36d00
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ public CompletableFuture<LedgerEntries> readAsync(long firstEntry, long lastEntr

@Override
public CompletableFuture<LedgerEntries> readUnconfirmedAsync(long firstEntry, long lastEntry) {
return unsupported();
return readAsync(firstEntry, lastEntry);
}

@Override
Expand Down

0 comments on commit cb36d00

Please sign in to comment.