diff --git a/backend/services/mining-wallet-service/src/api/controllers/pool-account.controller.ts b/backend/services/mining-wallet-service/src/api/controllers/pool-account.controller.ts index 88345657..bde71f32 100644 --- a/backend/services/mining-wallet-service/src/api/controllers/pool-account.controller.ts +++ b/backend/services/mining-wallet-service/src/api/controllers/pool-account.controller.ts @@ -58,8 +58,8 @@ export class PoolAccountController { } @Get(':type') - @AdminOnly() - @ApiOperation({ summary: '获取特定类型池账户' }) + @Public() + @ApiOperation({ summary: '获取特定类型池账户(内网服务间调用)' }) async findByType(@Param('type') type: PoolAccountType) { return this.poolAccountService.findByType(type); }