// Extremely large transactions with lots of inputs can cost the network
// almost as much to process as they cost the sender in fees, because
// computing signature hashes is O(ninputs*txsize). Limiting transactions
// to MAX_STANDARD_TX_WEIGHT mitigates CPU exhaustion attacks.
https://github.com/bitcoin/bitcoin/issues/6522
https://github.com/sugarchain-project/sugarchain/blob/master-v0.16.3/src/policy/policy.cpp#L89-L97
https://github.com/sugarchain-project/sugarchain/blob/master-v0.16.3/src/wallet/wallet.cpp#L2991-L2996
its common issue on BTC based blockchain. it will fixed in
Schnorr Signature
update.