-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1250 from CityOfZion/CU-86drpne63
#86drpne63 - Add new methods on storage to get/put arrays, maps and objects without the need of stdlib convertion
- Loading branch information
Showing
24 changed files
with
656 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
from boa3.internal.model.builtin.interop.storage.get.storagegetboolmethod import StorageGetBoolMethod | ||
from boa3.internal.model.builtin.interop.storage.get.storagegetbytesmethod import StorageGetBytesMethod | ||
from boa3.internal.model.builtin.interop.storage.get.storagegetdictmethod import StorageGetDictMethod | ||
from boa3.internal.model.builtin.interop.storage.get.storagegetecpointmethod import StorageGetECPointMethod | ||
from boa3.internal.model.builtin.interop.storage.get.storagegetintmethod import StorageGetIntMethod | ||
from boa3.internal.model.builtin.interop.storage.get.storagegetlistmethod import StorageGetListMethod | ||
from boa3.internal.model.builtin.interop.storage.get.storagegetobjectmethod import StorageGetObjectMethod | ||
from boa3.internal.model.builtin.interop.storage.get.storagegetstrmethod import StorageGetStrMethod | ||
from boa3.internal.model.builtin.interop.storage.get.storagegetuint160method import StorageGetUInt160Method | ||
from boa3.internal.model.builtin.interop.storage.get.storagegetuint256method import StorageGetUInt256Method |
Oops, something went wrong.