Skip to content

Commit 8a98719

Browse files
committed
fixed fmt
1 parent 2882de5 commit 8a98719

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

src/dfi/validation.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2810,8 +2810,8 @@ Res ProcessDeFiEventFallible(const CBlock &block,
28102810
info.size_stripped = GetSerializeSize(block, PROTOCOL_VERSION | SERIALIZE_TRANSACTION_NO_WITNESS);
28112811
info.weight = GetBlockWeight(block);
28122812
info.stake_modifier = pindex->stakeModifier.ToString();
2813-
info.minter = ""; // mn operator address
2814-
info.masternode = ""; // mn owner address
2813+
info.minter = ""; // mn operator address
2814+
info.masternode = ""; // mn owner address
28152815

28162816
// minter info
28172817
CKeyID minter;
@@ -2822,7 +2822,8 @@ Res ProcessDeFiEventFallible(const CBlock &block,
28222822
info.masternode = id->ToString();
28232823
auto mn = mnview.GetMasternode(*id);
28242824
if (mn) {
2825-
auto dest = mn->operatorType == 1 ? CTxDestination(PKHash(minter)) : CTxDestination(WitnessV0KeyHash(minter));
2825+
auto dest =
2826+
mn->operatorType == 1 ? CTxDestination(PKHash(minter)) : CTxDestination(WitnessV0KeyHash(minter));
28262827
info.minter = EncodeDestination(dest);
28272828
}
28282829
}

0 commit comments

Comments
 (0)