-
Notifications
You must be signed in to change notification settings - Fork 25
Open
Labels
beginnerLess complex, good first issues to work on for users contributing to OpenZeppelin.Less complex, good first issues to work on for users contributing to OpenZeppelin.
Description
Currently, modules are imported without named imports
import "../security/Initializable" prefix Initializable_;
// usage:
Initializable_initialize();
Initializable_assertInitialized();We should explore using named imports instead, which would be more explicit and idiomatic:
import { initialize, assertInitialized } from "../security/Initializable";
// usage:
Initializable_initialize();
Initializable_assertInitialized();Originally posted by @emnul in #190 (comment)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
beginnerLess complex, good first issues to work on for users contributing to OpenZeppelin.Less complex, good first issues to work on for users contributing to OpenZeppelin.
Type
Projects
Status
Backlog