()
| 24 | import "github.com/DNAProject/DNA/cmd/sigsvr/handlers" |
| 25 | |
| 26 | func init() { |
| 27 | DefCliRpcSvr.RegHandler("createaccount", handlers.CreateAccount) |
| 28 | DefCliRpcSvr.RegHandler("exportaccount", handlers.ExportAccount) |
| 29 | DefCliRpcSvr.RegHandler("sigdata", handlers.SigData) |
| 30 | DefCliRpcSvr.RegHandler("sigrawtx", handlers.SigRawTransaction) |
| 31 | DefCliRpcSvr.RegHandler("sigmutilrawtx", handlers.SigMutilRawTransaction) |
| 32 | DefCliRpcSvr.RegHandler("sigtransfertx", handlers.SigTransferTransaction) |
| 33 | DefCliRpcSvr.RegHandler("signeovminvoketx", handlers.SigNeoVMInvokeTx) |
| 34 | DefCliRpcSvr.RegHandler("signeovminvokeabitx", handlers.SigNeoVMInvokeAbiTx) |
| 35 | DefCliRpcSvr.RegHandler("signativeinvoketx", handlers.SigNativeInvokeTx) |
| 36 | } |
nothing calls this directly
no test coverage detected