From 50e4ae63e167a323fc656ac8d352a38347d88479 Mon Sep 17 00:00:00 2001 From: Snazzah Date: Wed, 12 Aug 2020 23:24:56 -0500 Subject: [PATCH] Hotfix funding account in LBRY module --- src/structures/LBRY.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures/LBRY.js b/src/structures/LBRY.js index 4ff0e9c..1e873b1 100644 --- a/src/structures/LBRY.js +++ b/src/structures/LBRY.js @@ -147,7 +147,7 @@ class LBRY { createSupport({ accountID, claimID, amount }) { return this._sdkRequest('support_create', { account_id: accountID, claim_id: claimID, - amount: Util.LBRY.ensureDecimal(amount), funding_account_ids: accountID }); + amount: Util.LBRY.ensureDecimal(amount), funding_account_ids: [accountID] }); } /**