-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Optimized StorageMap #89
Conversation
As @erikzhang said, changes was required for byte to byte[] conversion, also was upgraded the |
I changed the unit test to not send the prefix as an argument because it is more real, the byte is considered as an integer, so 0x00 is added at the end. |
}; | ||
} | ||
|
||
public static StorageMap CreateMap(this StorageContext context, byte prefix) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can't find an optimized version of the conversion from byte
to byte array
inside the VM, should we remove this method?
Close #88