Can I send almost 1MB transaction?












6















Block size is still limited to 1MB. As I understood, transaction size is no longer limited. So can I be sure that my transaction with 29000 outputs and reliable fee will be included into block?
Or what is the max transaction size?










share|improve this question























  • Yes, but the question and both answers are not relevant now

    – Elizaveta Olehnovich
    Mar 5 at 13:42











  • Related: Block 364292 is basically one massive transaction: blockstream.info/block/…

    – chytrik
    Mar 5 at 21:16
















6















Block size is still limited to 1MB. As I understood, transaction size is no longer limited. So can I be sure that my transaction with 29000 outputs and reliable fee will be included into block?
Or what is the max transaction size?










share|improve this question























  • Yes, but the question and both answers are not relevant now

    – Elizaveta Olehnovich
    Mar 5 at 13:42











  • Related: Block 364292 is basically one massive transaction: blockstream.info/block/…

    – chytrik
    Mar 5 at 21:16














6












6








6








Block size is still limited to 1MB. As I understood, transaction size is no longer limited. So can I be sure that my transaction with 29000 outputs and reliable fee will be included into block?
Or what is the max transaction size?










share|improve this question














Block size is still limited to 1MB. As I understood, transaction size is no longer limited. So can I be sure that my transaction with 29000 outputs and reliable fee will be included into block?
Or what is the max transaction size?







transactions json-rpc raw-transaction full-node






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 5 at 12:44









Elizaveta OlehnovichElizaveta Olehnovich

354




354













  • Yes, but the question and both answers are not relevant now

    – Elizaveta Olehnovich
    Mar 5 at 13:42











  • Related: Block 364292 is basically one massive transaction: blockstream.info/block/…

    – chytrik
    Mar 5 at 21:16



















  • Yes, but the question and both answers are not relevant now

    – Elizaveta Olehnovich
    Mar 5 at 13:42











  • Related: Block 364292 is basically one massive transaction: blockstream.info/block/…

    – chytrik
    Mar 5 at 21:16

















Yes, but the question and both answers are not relevant now

– Elizaveta Olehnovich
Mar 5 at 13:42





Yes, but the question and both answers are not relevant now

– Elizaveta Olehnovich
Mar 5 at 13:42













Related: Block 364292 is basically one massive transaction: blockstream.info/block/…

– chytrik
Mar 5 at 21:16





Related: Block 364292 is basically one massive transaction: blockstream.info/block/…

– chytrik
Mar 5 at 21:16










1 Answer
1






active

oldest

votes


















5















Can I send almost 1MB transaction?




To be able to send a transaction that a miner will accept, that transaction has to be a standard transaction. As defined in policy.h



/** The maximum weight for transactions we're willing to relay/mine */
static const unsigned int MAX_STANDARD_TX_WEIGHT = 400000;


For non-Segwit transactions, the limit is 400,000 KB / 4 = 100,000 B = 100 kB.



Therefore, if you have a Pre-Segwit transaction larger than 100 kB but smaller than the block s̶i̶z̶e weight limit, you should contact a miner, and they'll be able to add your transaction to their block manually, if it's profitable for them.






share|improve this answer



















  • 1





    So 100kB limit still persists, I was confused by the comment to bitcoin.stackexchange.com/a/35882/92719 . Thanks a lot

    – Elizaveta Olehnovich
    Mar 5 at 14:33













  • You're welcome. If you have any other questions, I'm happy to help.

    – MCCCS
    Mar 5 at 14:36











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "308"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fbitcoin.stackexchange.com%2fquestions%2f85080%2fcan-i-send-almost-1mb-transaction%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









5















Can I send almost 1MB transaction?




To be able to send a transaction that a miner will accept, that transaction has to be a standard transaction. As defined in policy.h



/** The maximum weight for transactions we're willing to relay/mine */
static const unsigned int MAX_STANDARD_TX_WEIGHT = 400000;


For non-Segwit transactions, the limit is 400,000 KB / 4 = 100,000 B = 100 kB.



Therefore, if you have a Pre-Segwit transaction larger than 100 kB but smaller than the block s̶i̶z̶e weight limit, you should contact a miner, and they'll be able to add your transaction to their block manually, if it's profitable for them.






share|improve this answer



















  • 1





    So 100kB limit still persists, I was confused by the comment to bitcoin.stackexchange.com/a/35882/92719 . Thanks a lot

    – Elizaveta Olehnovich
    Mar 5 at 14:33













  • You're welcome. If you have any other questions, I'm happy to help.

    – MCCCS
    Mar 5 at 14:36
















5















Can I send almost 1MB transaction?




To be able to send a transaction that a miner will accept, that transaction has to be a standard transaction. As defined in policy.h



/** The maximum weight for transactions we're willing to relay/mine */
static const unsigned int MAX_STANDARD_TX_WEIGHT = 400000;


For non-Segwit transactions, the limit is 400,000 KB / 4 = 100,000 B = 100 kB.



Therefore, if you have a Pre-Segwit transaction larger than 100 kB but smaller than the block s̶i̶z̶e weight limit, you should contact a miner, and they'll be able to add your transaction to their block manually, if it's profitable for them.






share|improve this answer



















  • 1





    So 100kB limit still persists, I was confused by the comment to bitcoin.stackexchange.com/a/35882/92719 . Thanks a lot

    – Elizaveta Olehnovich
    Mar 5 at 14:33













  • You're welcome. If you have any other questions, I'm happy to help.

    – MCCCS
    Mar 5 at 14:36














5












5








5








Can I send almost 1MB transaction?




To be able to send a transaction that a miner will accept, that transaction has to be a standard transaction. As defined in policy.h



/** The maximum weight for transactions we're willing to relay/mine */
static const unsigned int MAX_STANDARD_TX_WEIGHT = 400000;


For non-Segwit transactions, the limit is 400,000 KB / 4 = 100,000 B = 100 kB.



Therefore, if you have a Pre-Segwit transaction larger than 100 kB but smaller than the block s̶i̶z̶e weight limit, you should contact a miner, and they'll be able to add your transaction to their block manually, if it's profitable for them.






share|improve this answer














Can I send almost 1MB transaction?




To be able to send a transaction that a miner will accept, that transaction has to be a standard transaction. As defined in policy.h



/** The maximum weight for transactions we're willing to relay/mine */
static const unsigned int MAX_STANDARD_TX_WEIGHT = 400000;


For non-Segwit transactions, the limit is 400,000 KB / 4 = 100,000 B = 100 kB.



Therefore, if you have a Pre-Segwit transaction larger than 100 kB but smaller than the block s̶i̶z̶e weight limit, you should contact a miner, and they'll be able to add your transaction to their block manually, if it's profitable for them.







share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 5 at 13:43









MCCCSMCCCS

4,65931444




4,65931444








  • 1





    So 100kB limit still persists, I was confused by the comment to bitcoin.stackexchange.com/a/35882/92719 . Thanks a lot

    – Elizaveta Olehnovich
    Mar 5 at 14:33













  • You're welcome. If you have any other questions, I'm happy to help.

    – MCCCS
    Mar 5 at 14:36














  • 1





    So 100kB limit still persists, I was confused by the comment to bitcoin.stackexchange.com/a/35882/92719 . Thanks a lot

    – Elizaveta Olehnovich
    Mar 5 at 14:33













  • You're welcome. If you have any other questions, I'm happy to help.

    – MCCCS
    Mar 5 at 14:36








1




1





So 100kB limit still persists, I was confused by the comment to bitcoin.stackexchange.com/a/35882/92719 . Thanks a lot

– Elizaveta Olehnovich
Mar 5 at 14:33







So 100kB limit still persists, I was confused by the comment to bitcoin.stackexchange.com/a/35882/92719 . Thanks a lot

– Elizaveta Olehnovich
Mar 5 at 14:33















You're welcome. If you have any other questions, I'm happy to help.

– MCCCS
Mar 5 at 14:36





You're welcome. If you have any other questions, I'm happy to help.

– MCCCS
Mar 5 at 14:36


















draft saved

draft discarded




















































Thanks for contributing an answer to Bitcoin Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fbitcoin.stackexchange.com%2fquestions%2f85080%2fcan-i-send-almost-1mb-transaction%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

How to send String Array data to Server using php in android

Title Spacing in Bjornstrup Chapter, Removing Chapter Number From Contents

Is anime1.com a legal site for watching anime?