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)
1163
1163
// Load address book
1164
1164
result = std::max (LoadAddressBookRecords (pwallet, *m_batch), result);
1165
1165
1166
- // Load tx records
1167
- result = std::max (LoadTxRecords (pwallet, *m_batch, any_unordered), result);
1168
-
1169
1166
// Load SPKMs
1170
1167
result = std::max (LoadActiveSPKMs (pwallet, *m_batch), result);
1171
1168
1172
1169
// Load decryption keys
1173
1170
result = std::max (LoadDecryptionKeys (pwallet, *m_batch), result);
1171
+
1172
+ // Load tx records
1173
+ result = std::max (LoadTxRecords (pwallet, *m_batch, any_unordered), result);
1174
1174
} catch (std::runtime_error& e) {
1175
1175
// Exceptions that can be ignored or treated as non-critical are handled by the individual loading functions.
1176
1176
// Any uncaught exceptions will be caught here and treated as critical.
You can’t perform that action at this time.
0 commit comments