Skip to content

Commit 41a56cd

Browse files
authored
[Coinbase] fix withdraw nonce (#660)
1 parent 2987311 commit 41a56cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ExchangeSharp/API/Exchanges/Coinbase/ExchangeCoinbaseAPI.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,7 @@ protected override async Task<Dictionary<string, decimal>> OnGetAmountsAvailable
557557

558558
protected override async Task<ExchangeWithdrawalResponse> OnWithdrawAsync(ExchangeWithdrawalRequest request)
559559
{
560-
var nonce = await GetNoncePayloadAsync();
560+
var nonce = await GenerateNonceAsync();
561561
var payload = new Dictionary<string, object>
562562
{
563563
{ "nonce", nonce },

0 commit comments

Comments
 (0)