From 98a53aaad0fe217d8fb1e24cea3c9ae12dc512a8 Mon Sep 17 00:00:00 2001 From: Snazzah Date: Wed, 12 Aug 2020 22:47:23 -0500 Subject: [PATCH] broadcast account funding --- src/structures/LBRY.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/structures/LBRY.js b/src/structures/LBRY.js index e9a9a72..d1c86a7 100644 --- a/src/structures/LBRY.js +++ b/src/structures/LBRY.js @@ -113,7 +113,8 @@ class LBRY { */ fundAccount({ to, from, everything, amount }) { return this._sdkRequest('account_fund', { - to_account: to, from_account: from, everything, amount: Util.LBRY.ensureDecimal(amount) }); + to_account: to, from_account: from, everything, + amount: Util.LBRY.ensureDecimal(amount), broadcast: true }); } /**