ok... so, what you want to do it find the most recent "send" transaction that is in the "encrypted" wallet... then right click the transaction and select "copy transaction id":
Once you have that TransactionID, you can lookup the transaction on a blockexplorer like blockchain.com, blockchair.com, blockstream.info, blockcypher.com etc... For this example, I'll use blockchain.com. Lets say that our TransactionID is:
8868a53fdf818ce4dda050b9e5992d9a61e3fe3da754b68b521e48acc94406bbWe put that into blockchain.com and we see this:
We can see on the right hand side, the "output" addresses:
-
1ETCkqqVd4CTffmZJyL3R18eGbVb44EXbU-
3EEJFjZURxShNr2AoJtbfcvCB749yzP7LPWhat you want to do is check all of the output addresses that you see for your transaction using the
getaddressinfo command... on
both the unencrypted and the encrypted wallet.dat's...
So, for our example transaction, we want to use the following commands on both the old and new wallet.dat's:
getaddressinfo 1ETCkqqVd4CTffmZJyL3R18eGbVb44EXbU
getaddressinfo 3EEJFjZURxShNr2AoJtbfcvCB749yzP7LP
If my theory is correct, on the old
unecrypted wallet.dat... all of the output addresses will say "ismine:false"
like this:
getaddressinfo 1ETCkqqVd4CTffmZJyL3R18eGbVb44EXbU
{
"address": "1ETCkqqVd4CTffmZJyL3R18eGbVb44EXbU",
"scriptPubKey": "76a914938e43764d6068ff631f3d98d582d4e9e718c88a88ac",
"ismine": false,
"solvable": false,
"iswatchonly": false,
"isscript": false,
"iswitness": false,
"ischange": false,
"labels": [
]
}
and this:
getaddressinfo 3EEJFjZURxShNr2AoJtbfcvCB749yzP7LP
{
"address": "3EEJFjZURxShNr2AoJtbfcvCB749yzP7LP",
"scriptPubKey": "a914898c095b5b02d8a3f736f6cf872c5f97c5eccefc87",
"ismine": false,
"solvable": false,
"iswatchonly": false,
"isscript": true,
"iswitness": false,
"ischange": false,
"labels": [
]
}
However, when you check the addresses on the "new" encrypted wallet.dat...
one of those addresses will display as "ismine: true" (and most likely "ischange: true" as well)... like this:
getaddressinfo 3EEJFjZURxShNr2AoJtbfcvCB749yzP7LP
{
"address": "3EEJFjZURxShNr2AoJtbfcvCB749yzP7LP",
"scriptPubKey": "a914898c095b5b02d8a3f736f6cf872c5f97c5eccefc87",
"ismine": true,
"solvable": false,
"iswatchonly": false,
"isscript": true,
"iswitness": false,
"ischange": true,
"labels": [
]
}