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
One can deserialize a hex string into a Txid using either encode::deserialize_hex() or parse::<Txid>(). Use parse everywhere in favour of using standard traits over custom functions.
The text was updated successfully, but these errors were encountered:
tcharding
changed the title
Use pares instead of deserialize_hex for hash types
Use parse instead of deserialize_hex for hash types
Nov 27, 2024
One can deserialize a hex string into a
Txid
using eitherencode::deserialize_hex()
orparse::<Txid>()
. Useparse
everywhere in favour of using standard traits over custom functions.The text was updated successfully, but these errors were encountered: