Can I send almost 1MB transaction?What is the maximum size of a transaction?How are transaction fees...
How does signal strength relate to bandwidth?
Rationale to prefer local variables over instance variables?
Can an earth elemental drown/bury its opponent underground using earth glide?
Specific Chinese carabiner QA?
Did Amazon pay $0 in taxes last year?
Why is it "take a leak?"
I encountered my boss during an on-site interview at another company. Should I bring it up when seeing him next time?
What can I do if someone tampers with my SSH public key?
How does insurance birth control work?
Where is this quote about overcoming the impossible said in "Interstellar"?
Why would the IRS ask for birth certificates or even audit a small tax return?
Practical reasons to have both a large police force and bounty hunting network?
Can we carry rice to Japan?
Why won't the strings command stop?
An Undercover Army
Should we avoid writing fiction about historical events without extensive research?
How can I handle a player who pre-plans arguments about my rulings on RAW?
PTIJ: Mordechai mourning
Plagiarism of code by other PhD student
Why do phishing e-mails use faked e-mail addresses instead of the real one?
Is there a full canon version of Tyrion's jackass/honeycomb joke?
GPL code private and stolen
Meaning of word ягоза
PTIJ: What dummy is the Gemara referring to?
Can I send almost 1MB transaction?
What is the maximum size of a transaction?How are transaction fees calculated in raw-transactions?can blocks remain capped to 1MB forever?To combine or not to combineHow a block is defined (size, number of transactions)?Transaction Sent Taking almost 2 days , what's wrong? Help plsHow does CoinJoin affect the total transaction size?Are bitcoin transaction confirmation times limited by block size?What does malleable mean in “transaction malleability”?Is there any mechanism in Bitcoin that allows it to dynamically adapt to the flow of transactions?Why someone send this transaction
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
New contributor
add a comment |
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
New contributor
Yes, but the question and both answers are not relevant now
– Elizaveta Olehnovich
yesterday
Related: Block 364292 is basically one massive transaction: blockstream.info/block/…
– chytrik
yesterday
add a comment |
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
New contributor
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
transactions json-rpc raw-transaction full-node
New contributor
New contributor
New contributor
asked yesterday
Elizaveta OlehnovichElizaveta Olehnovich
354
354
New contributor
New contributor
Yes, but the question and both answers are not relevant now
– Elizaveta Olehnovich
yesterday
Related: Block 364292 is basically one massive transaction: blockstream.info/block/…
– chytrik
yesterday
add a comment |
Yes, but the question and both answers are not relevant now
– Elizaveta Olehnovich
yesterday
Related: Block 364292 is basically one massive transaction: blockstream.info/block/…
– chytrik
yesterday
Yes, but the question and both answers are not relevant now
– Elizaveta Olehnovich
yesterday
Yes, but the question and both answers are not relevant now
– Elizaveta Olehnovich
yesterday
Related: Block 364292 is basically one massive transaction: blockstream.info/block/…
– chytrik
yesterday
Related: Block 364292 is basically one massive transaction: blockstream.info/block/…
– chytrik
yesterday
add a comment |
1 Answer
1
active
oldest
votes
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.
1
So 100kB limit still persists, I was confused by the comment to bitcoin.stackexchange.com/a/35882/92719 . Thanks a lot
– Elizaveta Olehnovich
yesterday
You're welcome. If you have any other questions, I'm happy to help.
– MCCCS
yesterday
add a comment |
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
});
}
});
Elizaveta Olehnovich is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
1
So 100kB limit still persists, I was confused by the comment to bitcoin.stackexchange.com/a/35882/92719 . Thanks a lot
– Elizaveta Olehnovich
yesterday
You're welcome. If you have any other questions, I'm happy to help.
– MCCCS
yesterday
add a comment |
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.
1
So 100kB limit still persists, I was confused by the comment to bitcoin.stackexchange.com/a/35882/92719 . Thanks a lot
– Elizaveta Olehnovich
yesterday
You're welcome. If you have any other questions, I'm happy to help.
– MCCCS
yesterday
add a comment |
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.
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.
answered yesterday
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
yesterday
You're welcome. If you have any other questions, I'm happy to help.
– MCCCS
yesterday
add a comment |
1
So 100kB limit still persists, I was confused by the comment to bitcoin.stackexchange.com/a/35882/92719 . Thanks a lot
– Elizaveta Olehnovich
yesterday
You're welcome. If you have any other questions, I'm happy to help.
– MCCCS
yesterday
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
yesterday
So 100kB limit still persists, I was confused by the comment to bitcoin.stackexchange.com/a/35882/92719 . Thanks a lot
– Elizaveta Olehnovich
yesterday
You're welcome. If you have any other questions, I'm happy to help.
– MCCCS
yesterday
You're welcome. If you have any other questions, I'm happy to help.
– MCCCS
yesterday
add a comment |
Elizaveta Olehnovich is a new contributor. Be nice, and check out our Code of Conduct.
Elizaveta Olehnovich is a new contributor. Be nice, and check out our Code of Conduct.
Elizaveta Olehnovich is a new contributor. Be nice, and check out our Code of Conduct.
Elizaveta Olehnovich is a new contributor. Be nice, and check out our Code of Conduct.
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
Yes, but the question and both answers are not relevant now
– Elizaveta Olehnovich
yesterday
Related: Block 364292 is basically one massive transaction: blockstream.info/block/…
– chytrik
yesterday