We only expose the appropriate peg-out method type per network
| 776 | |
| 777 | // We only expose the appropriate peg-out method type per network |
| 778 | RPCHelpMan sendtomainchain() |
| 779 | { |
| 780 | if (Params().GetEnforcePak()) { |
| 781 | return sendtomainchain_pak(); |
| 782 | } else { |
| 783 | return sendtomainchain_base(); |
| 784 | } |
| 785 | } |
| 786 | |
| 787 | extern UniValue signrawtransaction(const JSONRPCRequest& request); |
| 788 | extern UniValue sendrawtransaction(const JSONRPCRequest& request); |
nothing calls this directly
no test coverage detected