Post
Topic
Board Announcements (Altcoins)
Re: Execoin: | Electrum |Android & Lite wallets | Fast | ASIC-proof | Full-time devs
by
execoin
on 28/06/2014, 14:24:34 UTC
when i try to transfer my exe from the regular wallet to electrum wallet, i keep on getting transaction to large.  what is the maximum i can set at 1 transaction?
Could you please try to split this transaction into smaller ones? Maximum transaction size is measured in kilobytes and not in amount of EXE being transferred.
If transaction consist of a lot of small inputs (for example if you are trying to send 100k of EXE mined into your wallet by 50 EXE blocks), this limit may be reached.
Just split it into smaller ones.

// 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_SIZE mitigates CPU exhaustion attacks.
/** The maximum size for transactions we're willing to relay/mine */
static const unsigned int MAX_STANDARD_TX_SIZE = 100000;

This size is enough to hold ~ 1000 of inputs.