You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Replace `bitcoin::consensus::encode::deserialize_hex()` with `hex_str.parse::<Txid>()`
when parsing Txids from RPC, and `serialize_hex()` with `txid.to_string()` when sending to RPC,
ensuring proper handling of Bitcoin Core's reversed-byte hexadecimal format.
- Fix mempool eviction logic: transactions that are no longer in the mempool are now
correctly removed from wallet consideration, preventing stale pending transactions
from inflating unconfirmed balances.
0 commit comments