Skip to content

Commit 23dd88c

Browse files
authored
Merge pull request #508 from dashpay/develop
chore: Merge develop into master
2 parents 2c738d8 + f1ba141 commit 23dd88c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

DashSync/shared/Models/Managers/Chain Managers/DSMasternodeManager.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)