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










2















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?










share|improve this question


























    2















    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?










    share|improve this question
























      2












      2








      2








      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?










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 27 at 13:51









      Piu130Piu130

      1133




      1133




















          1 Answer
          1






          active

          oldest

          votes


















          6














          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)));






          share|improve this answer























            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%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









            6














            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)));






            share|improve this answer



























              6














              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)));






              share|improve this answer

























                6












                6








                6







                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)));






                share|improve this answer













                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)));







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 27 at 13:58









                amaclinamaclin

                5,55611024




                5,55611024



























                    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%2f85662%2fwhere-is-sumvin-sumvout-check-in-bitcoin-core%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

                    Lowndes Grove History Architecture References Navigation menu32°48′6″N 79°57′58″W / 32.80167°N 79.96611°W / 32.80167; -79.9661132°48′6″N 79°57′58″W / 32.80167°N 79.96611°W / 32.80167; -79.9661178002500"National Register Information System"Historic houses of South Carolina"Lowndes Grove""+32° 48' 6.00", −79° 57' 58.00""Lowndes Grove, Charleston County (260 St. Margaret St., Charleston)""Lowndes Grove"The Charleston ExpositionIt Happened in South Carolina"Lowndes Grove (House), Saint Margaret Street & Sixth Avenue, Charleston, Charleston County, SC(Photographs)"Plantations of the Carolina Low Countrye

                    random experiment with two different functions on unit interval Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)Random variable and probability space notionsRandom Walk with EdgesFinding functions where the increase over a random interval is Poisson distributedNumber of days until dayCan an observed event in fact be of zero probability?Unit random processmodels of coins and uniform distributionHow to get the number of successes given $n$ trials , probability $P$ and a random variable $X$Absorbing Markov chain in a computer. Is “almost every” turned into always convergence in computer executions?Stopped random walk is not uniformly integrable

                    How should I support this large drywall patch? 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?How do I cover large gaps in drywall?How do I keep drywall around a patch from crumbling?Can I glue a second layer of drywall?How to patch long strip on drywall?Large drywall patch: how to avoid bulging seams?Drywall Mesh Patch vs. Bulge? To remove or not to remove?How to fix this drywall job?Prep drywall before backsplashWhat's the best way to fix this horrible drywall patch job?Drywall patching using 3M Patch Plus Primer