Exemplo n.º 1
0
        public ApiResult <List <ActorStateResult> > State(string chainId)
        {
            var result = _akkaService.GetState(chainId);

            return(new ApiResult <List <ActorStateResult> >(result));
        }
Exemplo n.º 2
0
        public async Task <ApiResult <List <ActorStateResult> > > State(string chainId)
        {
            var result = await _akkaService.GetState(chainId);

            return(new ApiResult <List <ActorStateResult> >(result));
        }