@@ -701,7 +701,7 @@ - (void)peer:(DSPeer *)peer relayedMasternodeDiffMessage:(NSData *)message {
701701 UInt256 blockHash = result.blockHash ;
702702 DSLog (@" •••• -> processed mnlistdiff %u ..%u %@ .. %@ " , [self heightForBlockHash: baseBlockHash], [self heightForBlockHash: blockHash], uint256_hex (baseBlockHash), uint256_hex (blockHash));
703703 #if SAVE_MASTERNODE_DIFF_TO_FILE
704- NSString *fileName = [NSString stringWithFormat: @" MNL_%@ _%@ __%d .dat" , @([self heightForBlockHash: baseBlockHash]), @([self heightForBlockHash: blockHash]), @( peer.version) ];
704+ NSString *fileName = [NSString stringWithFormat: @" MNL_%@ _%@ __%d .dat" , @([self heightForBlockHash: baseBlockHash]), @([self heightForBlockHash: blockHash]), peer.version];
705705 DSLog (@" •-• File %@ saved" , fileName);
706706 [message saveToFile: fileName inDirectory: NSCachesDirectory];
707707 #endif
@@ -749,7 +749,7 @@ - (void)peer:(DSPeer *)peer relayedQuorumRotationInfoMessage:(NSData *)message {
749749 DSLog (@" •••• -> processed qrinfo h-4c %u ..%u %@ .. %@ " , [self heightForBlockHash: result.mnListDiffResultAtH4C.baseBlockHash], [self heightForBlockHash: result.mnListDiffResultAtH4C.blockHash], uint256_hex (result.mnListDiffResultAtH4C .baseBlockHash ), uint256_hex (result.mnListDiffResultAtH4C .blockHash ));
750750 }
751751 #if SAVE_MASTERNODE_DIFF_TO_FILE
752- NSString *fileName = [NSString stringWithFormat: @" QRINFO_%@ _%@ __%d .dat" , @([self heightForBlockHash: baseBlockHash]), @([self heightForBlockHash: blockHash]), @( peer.version) ];
752+ NSString *fileName = [NSString stringWithFormat: @" QRINFO_%@ _%@ __%d .dat" , @([self heightForBlockHash: baseBlockHash]), @([self heightForBlockHash: blockHash]), peer.version];
753753 DSLog (@" •-• File %@ saved" , fileName);
754754 [message saveToFile: fileName inDirectory: NSCachesDirectory];
755755 #endif
0 commit comments