Order IDs (and all big numerical values) were getting truncated due to the implementation of deserialize and serialize of the bigdecimal Rust crate (see akubera/bigdecimal-rs#117). We now just use u128s to avoid that, since none of the values are bigger than u128::MAX anyways.
Order IDs (and all big numerical values) were getting truncated due to the implementation of deserialize and serialize of the bigdecimal Rust crate (see akubera/bigdecimal-rs#117). We now just use u128s to avoid that, since none of the values are bigger than u128::MAX anyways.