diff --git a/src/coinbase/transfer.ts b/src/coinbase/transfer.ts index 80b9cbab..915d0fa2 100644 --- a/src/coinbase/transfer.ts +++ b/src/coinbase/transfer.ts @@ -239,7 +239,7 @@ export class Transfer { * @returns The Transfer object in a terminal state. * @throws {Error} if the Transfer times out. */ - public async wait({ intervalSeconds = 0.2, timeoutSeconds = 10 } = {}): Promise { + public async wait({ intervalSeconds = 0.2, timeoutSeconds = 40 } = {}): Promise { const startTime = Date.now(); while (Date.now() - startTime < timeoutSeconds * 1000) {