-
Notifications
You must be signed in to change notification settings - Fork 12
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
Updated scrypto dependency to latest version #117
Conversation
crates/radix-engine-toolkit/src/transaction_types/traverser/types/general.rs
Outdated
Show resolved
Hide resolved
@@ -1056,24 +1055,24 @@ macro_rules! manifest_args { | |||
($($args: expr),*$(,)?) => {{ | |||
use ::sbor::Encoder; | |||
let mut buf = ::sbor::rust::vec::Vec::new(); | |||
let mut encoder = radix_engine_common::data::manifest::ManifestEncoder::new( | |||
let mut encoder = radix_common::data::manifest::ManifestEncoder::new( |
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.
Can you please add support for the account locker methods to the builder? Examples of how we've done this in the past is at the end of the file.
Please let me know if you think that this should be a separate PR to get this in quicker for Lukasz.
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've added all of the AccountLocker
blueprint functions, but there is an issue with account_locker_airdrop
in Swift
error: Address
does not conform to protocol Hashable
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've solved this issue by making the HashMap's key a string. Will need to look into getting a Hashable address soon.
Feature/decimal to from bytes
Summary
Update Scrypto dependency to latest version required for:
Decimal
to/from bytes (PR Feature/decimal to from bytes #118)zeroize
onPrivateKey
Special attention to:
Locker
blueprint addition andVersionedSchema
changes.