コード例 #1
0
ファイル: ActorController.cs プロジェクト: shiwk/AElf
        public ApiResult <List <ActorStateResult> > State(string chainId)
        {
            var result = _akkaService.GetState(chainId);

            return(new ApiResult <List <ActorStateResult> >(result));
        }
コード例 #2
0
ファイル: ActorController.cs プロジェクト: xiaoxiongnpu/AElf
        public async Task <ApiResult <List <ActorStateResult> > > State(string chainId)
        {
            var result = await _akkaService.GetState(chainId);

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