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
There are a bunch of zcashd JSON-RPC methods that return decimal ZEC values. Currently to return those with jsonrpsee and its serde interface, we use an f64, but that is fragile.
There are a bunch of
zcashd
JSON-RPC methods that return decimal ZEC values. Currently to return those withjsonrpsee
and itsserde
interface, we use anf64
, but that is fragile.In
zcashd
we instead used an explicit fixed-point decimal string representation that was then encoded as a number. I'm not quite sure how to replicate this viaserde
, but we need to figure it out.The text was updated successfully, but these errors were encountered: