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
This is returned only when the empty string is not the last element in the array, but in this case it is simply removed. For example using the above cotnract with data
{
"the_array": [
0,
"a",
""
]
}
The result is
{
"the_array": [
0,
"a"
]
}
Notice this behavior by updating zenroom in slangroom and tests start failing. Tests passed with zenroom 4.6.0 thus is something we have modified between it and latest commit.
The text was updated successfully, but these errors were encountered:
Detected a really strange behaviour when trying to load array with an mepty string in it.
To reproduce use the contract
with data
and you will get
This is returned only when the empty string is not the last element in the array, but in this case it is simply removed. For example using the above cotnract with data
The result is
Notice this behavior by updating zenroom in slangroom and tests start failing. Tests passed with zenroom 4.6.0 thus is something we have modified between it and latest commit.
The text was updated successfully, but these errors were encountered: