Where is sum(vin) > sum(vout) check in Bitcoin Core? Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Where can i see my BitCoin addresses?How to validate raw transactions using bitcoind and/or bitcoin-cli (preferably offline)?Ethereum - how is the output of a contract computation verified?Double spend a tx output already spent but unconfirmed because of low feeI run Bitcoin Core 0.14.1, for Segwit they tell me to “upgrade” to 0.13.1. So confusingHow bitcoin protocol checks transaction is valid (in particular that inputs are unspent)?bitcoin core node cannot route to peersWhat are the exact steps for creating a transaction and having a valid block?explain decoderawtransaction output fields and interpretation
What is this clumpy 20-30cm high yellow-flowered plant?
Has negative voting ever been officially implemented in elections, or seriously proposed, or even studied?
Is there any word for a place full of confusion?
Why is Nikon 1.4g better when Nikon 1.8g is sharper?
Question about debouncing - delay of state change
What is the meaning of 'breadth' in breadth first search?
How do living politicians protect their readily obtainable signatures from misuse?
What is the appropriate index architecture when forced to implement IsDeleted (soft deletes)?
Hangman Game with C++
Why do we bend a book to keep it straight?
What do you call the main part of a joke?
Is a ledger board required if the side of my house is wood?
What was the first language to use conditional keywords?
Do any jurisdictions seriously consider reclassifying social media websites as publishers?
Is there a kind of relay that only consumes power when switching?
Why should I vote and accept answers?
Taylor expansion of ln(1-x)
Project Euler #1 in C++
Amount of permutations on an NxNxN Rubik's Cube
Using audio cues to encourage good posture
Illegal assignment from sObject to Id
How does Python know the values already stored in its memory?
How were pictures turned from film to a big picture in a picture frame before digital scanning?
How would a mousetrap for use in space work?
Where is sum(vin) > sum(vout) check in Bitcoin Core?
Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?Where can i see my BitCoin addresses?How to validate raw transactions using bitcoind and/or bitcoin-cli (preferably offline)?Ethereum - how is the output of a contract computation verified?Double spend a tx output already spent but unconfirmed because of low feeI run Bitcoin Core 0.14.1, for Segwit they tell me to “upgrade” to 0.13.1. So confusingHow bitcoin protocol checks transaction is valid (in particular that inputs are unspent)?bitcoin core node cannot route to peersWhat are the exact steps for creating a transaction and having a valid block?explain decoderawtransaction output fields and interpretation
I'm searching the function that validates a transaction according to Protocol rules - "tx" messages especially step 14 sum(vin) > sum(vout)
.
I found this interesting function CheckTransaction(const CTransaction& tx, CValidationState &state)
but it does not validate step 14, right?
Where is this check for step 14?
bitcoin-core transaction-verification
add a comment |
I'm searching the function that validates a transaction according to Protocol rules - "tx" messages especially step 14 sum(vin) > sum(vout)
.
I found this interesting function CheckTransaction(const CTransaction& tx, CValidationState &state)
but it does not validate step 14, right?
Where is this check for step 14?
bitcoin-core transaction-verification
add a comment |
I'm searching the function that validates a transaction according to Protocol rules - "tx" messages especially step 14 sum(vin) > sum(vout)
.
I found this interesting function CheckTransaction(const CTransaction& tx, CValidationState &state)
but it does not validate step 14, right?
Where is this check for step 14?
bitcoin-core transaction-verification
I'm searching the function that validates a transaction according to Protocol rules - "tx" messages especially step 14 sum(vin) > sum(vout)
.
I found this interesting function CheckTransaction(const CTransaction& tx, CValidationState &state)
but it does not validate step 14, right?
Where is this check for step 14?
bitcoin-core transaction-verification
bitcoin-core transaction-verification
asked Mar 27 at 13:51
Piu130Piu130
1133
1133
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
https://github.com/bitcoin/bitcoin/search?q=bad-txns-in-belowout&unscoped_q=bad-txns-in-belowout
const CAmount value_out = tx.GetValueOut();
if (nValueIn < value_out)
return state.DoS(100, false, REJECT_INVALID, "bad-txns-in-belowout", false,
strprintf("value in (%s) < value out (%s)", FormatMoney(nValueIn), FormatMoney(value_out)));
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
);
);
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%2f85662%2fwhere-is-sumvin-sumvout-check-in-bitcoin-core%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
https://github.com/bitcoin/bitcoin/search?q=bad-txns-in-belowout&unscoped_q=bad-txns-in-belowout
const CAmount value_out = tx.GetValueOut();
if (nValueIn < value_out)
return state.DoS(100, false, REJECT_INVALID, "bad-txns-in-belowout", false,
strprintf("value in (%s) < value out (%s)", FormatMoney(nValueIn), FormatMoney(value_out)));
add a comment |
https://github.com/bitcoin/bitcoin/search?q=bad-txns-in-belowout&unscoped_q=bad-txns-in-belowout
const CAmount value_out = tx.GetValueOut();
if (nValueIn < value_out)
return state.DoS(100, false, REJECT_INVALID, "bad-txns-in-belowout", false,
strprintf("value in (%s) < value out (%s)", FormatMoney(nValueIn), FormatMoney(value_out)));
add a comment |
https://github.com/bitcoin/bitcoin/search?q=bad-txns-in-belowout&unscoped_q=bad-txns-in-belowout
const CAmount value_out = tx.GetValueOut();
if (nValueIn < value_out)
return state.DoS(100, false, REJECT_INVALID, "bad-txns-in-belowout", false,
strprintf("value in (%s) < value out (%s)", FormatMoney(nValueIn), FormatMoney(value_out)));
https://github.com/bitcoin/bitcoin/search?q=bad-txns-in-belowout&unscoped_q=bad-txns-in-belowout
const CAmount value_out = tx.GetValueOut();
if (nValueIn < value_out)
return state.DoS(100, false, REJECT_INVALID, "bad-txns-in-belowout", false,
strprintf("value in (%s) < value out (%s)", FormatMoney(nValueIn), FormatMoney(value_out)));
answered Mar 27 at 13:58
amaclinamaclin
5,55611024
5,55611024
add a comment |
add a comment |
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%2f85662%2fwhere-is-sumvin-sumvout-check-in-bitcoin-core%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