Files
makemd/server/src/core/security/ProofOfComputationService.ts

16 lines
436 B
TypeScript
Raw Normal View History

import { logger } from '../../utils/logger';
/**
* Proof of Computation Service
* @description
*/
export class ProofOfComputationService {
/**
*
*/
static async registerProof(hash: string, status: string) {
logger.info(`[ProofOfComputationService] Registered proof: ${hash} with status: ${status}`);
// 这里可以添加注册证明的逻辑
}
}