This program is the implementation of MPT in GoLang.
All the inforamtion bases on the Etherum Patricia Tree: https://github.com/ethereum/wiki/wiki/Patricia-Tree .
This program will have 5 main function:
- Compact_encode(hex_array) -> hex_array
- Compact_decode(hex_array) -> hex_array
- Get(key) -> value
- Insert(key, value)
- Delete(key)