From 7ea6cac92f393083e5ccf301eb447e0fc839b1bb Mon Sep 17 00:00:00 2001 From: Chase Oliphant Date: Mon, 10 Feb 2020 07:55:27 -0800 Subject: [PATCH] Update creating an account example (#299) Related to https://github.com/stellar/docs/issues/431 I think the `.setTimeout()` was missed in this example. --- docs/reference/base-examples.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/reference/base-examples.md b/docs/reference/base-examples.md index 74bdfc0d4..5214ea651 100644 --- a/docs/reference/base-examples.md +++ b/docs/reference/base-examples.md @@ -33,6 +33,7 @@ server.accounts() destination: destination.publicKey(), startingBalance: '25' })) + .setTimeout(30) .build() transaction.sign(StellarSdk.Keypair.fromSecret(source.secret())) return server.submitTransaction(transaction)