What is the maximum amount I can send with "sendmany()"

0

If I use the sendmany(); function is there a maximum of the output amount? Example:

The maximum would be 0.01 BTC

data={'address1':amount1,'address2':amount2};

amount1+amount2 = 0.02 BTC

-> But then it would be above the maximum.

Thanks.

Marc-Andre

Posted 2016-03-29T15:33:56.777

Reputation: 65

Are you asking whether you can send more than the Bitcoin contained within a single output, or whether the combined Bitcoin can exceed the Bitcoin in your wallet?Nick ODell 2016-03-29T16:36:09.377

Answers

1

The maximum output amount is the full wallet balance minus any transaction fees, many inputs up to and including all that have a positive balance can be combined to create the utxo set used in the transaction.

Mark S.

Posted 2016-03-29T15:33:56.777

Reputation: 2 415