| 616 | } |
| 617 | |
| 618 | bool LegacyScriptPubKeyMan::SignTransaction(CMutableTransaction& tx, const std::map<COutPoint, Coin>& coins, int sighash, std::map<int, bilingual_str>& input_errors) const |
| 619 | { |
| 620 | return ::SignTransaction(tx, this, coins, sighash, Params().HashGenesisBlock(), input_errors); |
| 621 | } |
| 622 | |
| 623 | SigningResult LegacyScriptPubKeyMan::SignMessage(const std::string& message, const PKHash& pkhash, std::string& str_sig) const |
| 624 | { |
nothing calls this directly
no test coverage detected