Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion brownie/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func validateConfigPresence(configPath string) error {
// Verify that the config is present
if _, err := os.Stat(configPath); err != nil {
return fmt.Errorf(
"unable to locate configuaration at path: %s, error: %w",
"unable to locate configuration at path: %s, error: %w",
configPath,
err,
)
Expand Down
4 changes: 2 additions & 2 deletions commands/push.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ func uploadContracts(rest *rest.Rest) error {
if numberOfContractsWithANetwork == 0 {
if DeploymentProvider.GetProviderName() == providers.OpenZeppelinDeploymentProvider {
pushErrors[projectSlug] = userError.NewUserError(
fmt.Errorf("no contracts with a netowrk found in build dir: %s", providerConfig.AbsoluteBuildDirectoryPath()),
fmt.Errorf("no contracts with a network found in build dir: %s", providerConfig.AbsoluteBuildDirectoryPath()),
Colorizer.Sprintf("No migrated contracts detected in build directory: %s. This can happen when no contracts have been migrated yet.\n"+
"There is currently an issue with exporting networks for regular contracts.\nThe OpenZeppelin team has come up with a workaround,"+
"so make sure you run %s before running %s\n"+
Expand All @@ -139,7 +139,7 @@ func uploadContracts(rest *rest.Rest) error {
continue
}
pushErrors[projectSlug] = userError.NewUserError(
fmt.Errorf("no contracts with a netowrk found in build dir: %s", providerConfig.AbsoluteBuildDirectoryPath()),
fmt.Errorf("no contracts with a network found in build dir: %s", providerConfig.AbsoluteBuildDirectoryPath()),
Colorizer.Sprintf("No migrated contracts detected in build directory: %s. This can happen when no contracts have been migrated yet.",
Colorizer.Bold(Colorizer.Red(providerConfig.AbsoluteBuildDirectoryPath())),
),
Expand Down
4 changes: 2 additions & 2 deletions rest/payloads/generated/actions/structs.conjure.go
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ func (o *BlockTrigger) UnmarshalYAML(unmarshal func(interface{}) error) error {
return safejson.Unmarshal(jsonBytes, *&o)
}

// Action invokation result.
// Action invocation result.
type Call struct {
Id string `json:"id"`
ActionId string `json:"actionId"`
Expand Down Expand Up @@ -474,7 +474,7 @@ func (o *CallStats) UnmarshalYAML(unmarshal func(interface{}) error) error {
return safejson.Unmarshal(jsonBytes, *&o)
}

// Summary of action invokation result since full call can be large. Keep this in sync with call.
// Summary of action invocation result since full call can be large. Keep this in sync with call.
type CallSummary struct {
Id string `json:"id"`
ActionId string `json:"actionId"`
Expand Down