diff --git a/apollo/src/aggregation/aggregation.service.ts b/apollo/src/aggregation/aggregation.service.ts index 0897b133..f3ef1583 100644 --- a/apollo/src/aggregation/aggregation.service.ts +++ b/apollo/src/aggregation/aggregation.service.ts @@ -341,6 +341,6 @@ export class AggregationService extends PrismaClient implements OnModuleInit { (BigInt(relayerInfo.liquidityFeeRate) * amount) / BigInt(100000); const R = relayerInfo.slashCount; const w = 1 + R * 0.1; - return Number(F / BigInt(10 ** decimals)) * w; + return Number(F) * w; } }