Example #1
0
 public RpcBlockHashService(IWalletRpcService <string> walletRpcService)
 {
     _walletRpcService = walletRpcService;
 }
 public RpcBlockService(IWalletRpcService <RpcBlock> walletRpcService, IRpcBlockHashService blockHashService)
 {
     _walletRpcService = walletRpcService;
     _blockHashService = blockHashService;
 }
 public RpcTransactionService(IWalletRpcService <RpcTransaction> walletRpcService)
 {
     _walletRpcService = walletRpcService;
 }
 public RpcBlockCountService(IWalletRpcService <long> walletRpcService)
 {
     _walletRpcService = walletRpcService;
 }