FindoraNetwork / platform

Official Implementation of Findora Network.
https://findora.org
Other
73 stars 29 forks source link

fix lowlevel_data #938

Closed shaorongqiang closed 1 year ago

shaorongqiang commented 1 year ago
shaorongqiang commented 1 year ago

My understanding is that originally, before the height of 3971239, it was sufficient to simply return normally when checking if the array was empty. However, due to a previous mistake, an empty array became non-empty and continued to participate in JSON serialization. Therefore, this update adds a new height of 4033522 where normal logic is restored after this point. Before the height of 3971239 there were no such checks and x==None would return true.

Yes