broadcast account funding

This commit is contained in:
Snazzah 2020-08-12 22:47:23 -05:00
parent 1045741d63
commit 98a53aaad0
No known key found for this signature in database
GPG key ID: 5E71D54F3D86282E

View file

@ -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 });
}
/**