diff options
| author | Cory Fields <[email protected]> | 2014-09-24 22:54:08 -0400 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2014-10-17 13:44:14 -0400 |
| commit | e9ca4280f3abb8b2b6fa35a41e881996278ebfff (patch) | |
| tree | ee09dcf4ec7f9177ee329581382e001459ff2e16 /src/script/sign.cpp | |
| parent | script: move CScriptID to standard.h and add a ctor for creating them from CS... (diff) | |
| download | discoin-e9ca4280f3abb8b2b6fa35a41e881996278ebfff.tar.xz discoin-e9ca4280f3abb8b2b6fa35a41e881996278ebfff.zip | |
script: add ToByteVector() for converting anything with begin/end
This should move to a util header once their dependencies are cleaned up.
Diffstat (limited to 'src/script/sign.cpp')
| -rw-r--r-- | src/script/sign.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/sign.cpp b/src/script/sign.cpp index da77e7d1f..bf98c4039 100644 --- a/src/script/sign.cpp +++ b/src/script/sign.cpp @@ -78,7 +78,7 @@ bool Solver(const CKeyStore& keystore, const CScript& scriptPubKey, uint256 hash { CPubKey vch; keystore.GetPubKey(keyID, vch); - scriptSigRet << vch; + scriptSigRet << ToByteVector(vch); } return true; case TX_SCRIPTHASH: |