From 433ad3a56e9676d554c9be5a05c212a36f72d21d Mon Sep 17 00:00:00 2001 From: Prasanna Loganathar Date: Mon, 11 Nov 2024 18:15:44 +0800 Subject: [PATCH] More accurate notes --- src/dfi/rpc_accounts.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/dfi/rpc_accounts.cpp b/src/dfi/rpc_accounts.cpp index 81c4aa07b9..7442d04c56 100644 --- a/src/dfi/rpc_accounts.cpp +++ b/src/dfi/rpc_accounts.cpp @@ -3710,15 +3710,15 @@ UniValue logdbhashes(const JSONRPCRequest &request) { result.pushKV("blockhash", blockHash); // Note that this only guaranteed to be equal with other nodes // if they didn't hit undo changes at different points. - // Other instances that can cause this to differ are: - // consolidaterewards at different points, etc + // Other known instance that can cause this to differ: + // - consolidaterewards at different points if pre-static addresses are involved. result.pushKV("dvmhash", hashHex); result.pushKV("dvmhash_no_undo", hashHexNoUndo); auto res = XResultValueLogged(evm_try_get_latest_block_hash(result)); if (res) { // Only available after EVM activation - // EVM block hash already is inclusive of it's all it's + // EVM block hash already is inclusive of all it's // state, so we don't need to do the DVM shenangins. auto evmBlockHash = uint256::FromByteArray(*res).GetHex(); result.pushKV("evmhash", evmBlockHash);