Skip to content

Commit 36f9e86

Browse files
committed
remove unnecessary comments
1 parent a12c347 commit 36f9e86

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

apps/price_pusher/src/aptos/command.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ export default {
139139
const balanceTracker = createAptosBalanceTracker({
140140
address: account.address().toString(),
141141
endpoint,
142-
network: "aptos", // You might want to extract network name from config
142+
network: "aptos",
143143
updateInterval: pushingFrequency,
144144
metrics,
145145
logger: logger.child({ module: "AptosBalanceTracker" }),

apps/price_pusher/src/sui/command.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,12 +178,10 @@ export default {
178178

179179
// Create and start the balance tracker if metrics are enabled
180180
if (metrics) {
181-
// For Sui, we'll use a simple network identification approach
182-
// In the future, this could be improved by querying the network directly
183181
const balanceTracker = createSuiBalanceTracker({
184182
client: suiClient,
185183
address: suiAddress,
186-
network: "sui", // Simply use "sui" as the network name for now
184+
network: "sui",
187185
updateInterval: pushingFrequency,
188186
metrics,
189187
logger,

0 commit comments

Comments
 (0)