File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1163,14 +1163,14 @@ DBErrors WalletBatch::LoadWallet(CWallet* pwallet)
11631163 // Load address book
11641164 result = std::max (LoadAddressBookRecords (pwallet, *m_batch), result);
11651165
1166- // Load tx records
1167- result = std::max (LoadTxRecords (pwallet, *m_batch, any_unordered), result);
1168-
11691166 // Load SPKMs
11701167 result = std::max (LoadActiveSPKMs (pwallet, *m_batch), result);
11711168
11721169 // Load decryption keys
11731170 result = std::max (LoadDecryptionKeys (pwallet, *m_batch), result);
1171+
1172+ // Load tx records
1173+ result = std::max (LoadTxRecords (pwallet, *m_batch, any_unordered), result);
11741174 } catch (std::runtime_error& e) {
11751175 // Exceptions that can be ignored or treated as non-critical are handled by the individual loading functions.
11761176 // Any uncaught exceptions will be caught here and treated as critical.
You can’t perform that action at this time.
0 commit comments