- E618531AACEECEFE505689A76254DA2CAD45AF6DB44DE26138E130B166D1D26B6A78D0CCF352B8C9C11878E5549010CE48B2083089E14EE026D949F06CD310F6
+ F04D064F0C465C43227ED87994690F7A4D6232ED62CEFBEA03FC90128C29041F077A8D5A8943094F65BDF565258611A25A9B7DF32204233E533957A4CA6ADDF6
bitcoin/src/script.cpp
(877 . 7)(877 . 7)
1934 {
1935 if (nIn >= txTo.vin.size())
1936 {
1937 printf("ERROR: SignatureHash() : nIn=%d out of range\n", nIn);
1938 printf(SERR SMEM "signature hash for input number %d out of range\n", nIn);
1939 return 1;
1940 }
1941 CTransaction txTmp(txTo);
(908 . 7)(908 . 7)
1943 unsigned int nOut = nIn;
1944 if (nOut >= txTmp.vout.size())
1945 {
1946 printf("ERROR: SignatureHash() : nOut=%d out of range\n", nOut);
1947 printf(SERR SMEM "signature hash for output number %d out of range\n", nOut);
1948 return 1;
1949 }
1950 txTmp.vout.resize(nOut+1);