You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently CreateTransaction() split transactions by splitting asset Recipients and Inputs, thus will not work on a single asset case. Also tx splitting for sendtoaddress has been disabled.
The previous solution is too complex for this. If we are to support this we should change the code as follows:
Move splitting logic to SendAny(), SendMoney()
In case of a "transaction too large" error, split recipients
Iteratively (not recursively as is now) attempt to create smaller transactions
The text was updated successfully, but these errors were encountered:
Currently CreateTransaction() split transactions by splitting asset Recipients and Inputs, thus will not work on a single asset case. Also tx splitting for sendtoaddress has been disabled.
The previous solution is too complex for this. If we are to support this we should change the code as follows:
The text was updated successfully, but these errors were encountered: