-
Notifications
You must be signed in to change notification settings - Fork 101
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
upgrade unified #1652
upgrade unified #1652
Conversation
Coverage SummaryTotals
FilesExpand
|
Contract comparison - from c81a6c4 to 999b344
|
@@ -23,7 +22,7 @@ mod module_1 { | |||
///////////////////////////////////////////////////////////////////////////////////////////////// | |||
//////// CONTRACT TRAIT ///////////////////////////////////////////////////////////////////////// | |||
///////////////////////////////////////////////////////////////////////////////////////////////// | |||
pub trait VersionModule: multiversx_sc::contract_base::ContractBase + Sized { | |||
pub trait VersionModule: ContractBase + Sized { |
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.
Leave the fully qualified version in place, this is how it gets generated by the macros
@@ -34,7 +33,7 @@ mod module_1 { | |||
///////////////////////////////////////////////////////////////////////////////////////////////// | |||
//////// AUTO-IMPLEMENTED METHODS /////////////////////////////////////////////////////////////// | |||
///////////////////////////////////////////////////////////////////////////////////////////////// | |||
pub trait AutoImpl: multiversx_sc::contract_base::ContractBase {} | |||
pub trait AutoImpl: ContractBase {} |
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.
Leave the fully qualified version in place, this is how it gets generated by the macros
@@ -102,64 +105,63 @@ mod module_1 { | |||
} | |||
} | |||
|
|||
pub trait ProxyTrait: multiversx_sc::contract_base::ProxyObjBase + Sized { | |||
pub trait ProxyTrait: ProxyObjBase + Sized { |
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.
Leave the fully qualified version in place, this is how it gets generated by the macros
No description provided.