Commit 8a61e17c authored by Jeremy Bokobza's avatar Jeremy Bokobza

Renamed AskUnsignedVoucher to AskUnsignedVoucherAsync

parent 1cf17278
......@@ -21,7 +21,7 @@ namespace Breeze.TumbleBit.Client
/// <returns></returns>
Task<ClassicTumblerParameters> GetClassicTumblerParametersAsync();
Task<UnsignedVoucherInformation> AskUnsignedVoucher();
Task<UnsignedVoucherInformation> AskUnsignedVoucherAsync();
Task<PuzzleSolution> SignVoucherAsync(SignVoucherRequest signVoucherRequest);
......
......@@ -42,7 +42,7 @@ namespace Breeze.TumbleBit.Client
}
/// <inheritdoc />
public async Task<UnsignedVoucherInformation> AskUnsignedVoucher()
public async Task<UnsignedVoucherInformation> AskUnsignedVoucherAsync()
{
UnsignedVoucherInformation result = await this.serverAddress.AppendPathSegment("api/v1/tumblers/0/vouchers/").GetJsonAsync<UnsignedVoucherInformation>();
return result;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment