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
WASM does not natively care about integer signage, so uint64 end up being represented as int64 and the bytecode will do thee arithmetic to compensate... which means that often an EOS name like propose will show up as a negative constant in the bytecode.
It would be helpful if the name encoding helper would support this.
The text was updated successfully, but these errors were encountered:
WASM does not natively care about integer signage, so
uint64
end up being represented asint64
and the bytecode will do thee arithmetic to compensate... which means that often an EOS name likepropose
will show up as a negative constant in the bytecode.It would be helpful if the name encoding helper would support this.
The text was updated successfully, but these errors were encountered: