koinos / koinos-types

The Rosetta Stone of the Koinos ecosystem. Allows for the interpretation of Koinos data structures in a multitude of languages. Useful in the development of microservices, clients, and smart contracts.
MIT License
12 stars 3 forks source link

First argument of from_json() should be const #21

Closed theoreticalbts closed 4 years ago

theoreticalbts commented 4 years ago

We should change the from_json() function from from_json( json&, T&, uint32_t ) to from_json( const json&, T&, uint32_t ), as the json& parameter is not modified.