aboutsummaryrefslogtreecommitdiff
path: root/src/script/signingprovider.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Use explicit conversion from WitnessV0KeyHash -> CKeyIDBen Woosley2020-06-191-2/+2
| | | | These types are equivalent, in data etc, so they need only their data cast across.
* Use explicit conversion from PKHash -> CKeyIDBen Woosley2020-06-191-1/+1
| | | | | | | | These types are equivalent, in data etc, so they need only their data cast across. Note a function is used rather than a casting operator as CKeyID is defined at a lower level than script/standard
* Move WatchOnly stuff from SigningProvider to CWalletAndrew Chow2019-07-091-61/+0
|
* Move various SigningProviders to signingprovider.{cpp,h}Andrew Chow2019-07-091-0/+260
Moves all of the various SigningProviders out of sign.{cpp,h} and keystore.{cpp,h}. As such, keystore.{cpp,h} is also removed. Includes and the Makefile are updated to reflect this. Includes were largely changed using: git grep -l "keystore.h" | xargs sed -i -e 's;keystore.h;script/signingprovider.h;g'