Skip to content

Commit

Permalink
clean tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudBger committed Sep 5, 2024
1 parent dd4fc46 commit 6fe6ce5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions evm-events-calls/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -229,11 +229,11 @@ func (p *Project) Render() (projectFiles map[string][]byte, err error) {
}

for _, contract := range p.Contracts {
projectFiles[fmt.Sprintf("Abi/%s_contract.Abi.json", contract.Name)] = []byte(contract.Abi.raw)
projectFiles[fmt.Sprintf("abi/%s_contract.abi.json", contract.Name)] = []byte(contract.Abi.raw)
}

for _, dds := range p.DynamicContracts {
projectFiles[fmt.Sprintf("Abi/%s_contract.Abi.json", dds.Name)] = []byte(dds.Abi.raw)
projectFiles[fmt.Sprintf("abi/%s_contract.abi.json", dds.Name)] = []byte(dds.Abi.raw)
}

return
Expand Down
2 changes: 1 addition & 1 deletion evm-events-calls/state.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ type Project struct {
DynamicContracts []*DynamicContract `json:"dynamic_contracts"`
Compile bool `json:"compile,omitempty"` // optional field to write in state and automatically compile with no confirmation.
Download bool `json:"download,omitempty"`
ConfirmEnoughContracts bool `json:"confirm_enough_contracts"`
ConfirmEnoughContracts bool `json:"confirm_enough_contracts,omitempty"`

// Remote build part removed for the moment
// confirmDownloadOnly bool
Expand Down

0 comments on commit 6fe6ce5

Please sign in to comment.