Author

Topic: Pushing data to CScript (Read 289 times)

newbie
Activity: 2
Merit: 0
September 02, 2017, 05:15:37 PM
#2
I managed to do it. Found out about "utilsrencodings".

Code:
    CScript *cScript;
    opcodetype test;
    vector addr = ParseHex("71ed53322d470bb96657deb786b94f97dd46fb15");

    cScript = new CScript();
    *cScript << opcodetype::OP_HASH160;
    *cScript << addr;
    *cScript << opcodetype::OP_EQUAL;
    printf("%d\n",cScript->IsPayToScriptHash());



Thanks.
newbie
Activity: 2
Merit: 0
September 02, 2017, 03:54:54 PM
#1
Hi!

Just started learning Bitcoin Core code to better understand Bitcoin.
My C is a little bit rusty and I know just a little bit of C++ but I think I will pick it up fast as I progress.

I was thinking that the Bitcoin Script was a good place to start.
This is really basic so I hope I don't offend anyone.

What's the easiest way to push data (other than OP_CODES) to the CScript stack?

Code:
    CScript *cScript;
    opcodetype test;

    cScript = new CScript();
    *cScript << opcodetype::OP_HASH160;
   
    //Pushing 20 bytes
    *cScript << opcodetype::0x14
   
    //Need to push some address here but this is not the right way to do it...
    *cScript << "71ed53322d470bb96657deb786b94f97dd46fb15";
   
    *cScript << opcodetype::OP_EQUAL;


Thank you.
Jump to: