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 commands/actions/publish.go
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ func publish(
request := conjureactions.PublishRequest{
Actions: actions.ToRequest(sources),
Deploy: deploy,
Commitish: util.GetCommitish(),
Committish: util.GetCommittish(),
LogicZip: &logicZip,
LogicVersion: &logicHash,
DependenciesZip: &dependenciesZip,
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
2 changes: 1 addition & 1 deletion providers/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const (
HardhatConfigFile = "hardhat.config.js"
HardhatConfigFileTs = "hardhat.config.ts"

BuidlerConfigFile = "buidler.config.js"
BuidlerConfigFile = "builder.config.js"

NewTruffleConfigFile = "truffle-config.js"
OldTruffleConfigFile = "truffle.js"
Expand Down