Hi, I hope it's the right forum to ask. I am trying to check the block height of a specific transaction. As this is part of an atomic swap, the transaction is sent by another party to an address for which the spending key is unknown to me (at this stage of the execution). As the other party provides me with a transfer proof, I have no issue running `check_tx_key` on the rpc. However, this does not return the block height of the transaction, only confirmations. I then try to use `get_transfer_by_txid` to get the block height but it does not find the transaction, looking at the doc in more details it says: `Show information about a transfer to/from this address.` I guess the issue is that I am not the sender nor the receiver of the transaction, hence the error. Is there a way to use `monero-wallet-rpc` to check the height of an arbitrary transaction? I am thinking I could also use the confirmation, check current block height and do a subtraction. But I'd prefer if I get the exact value from the rpc.