Skip to content

Commit

Permalink
test:log
Browse files Browse the repository at this point in the history
  • Loading branch information
lochjin committed Oct 12, 2024
1 parent f91af0f commit b63f3b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion meerevm/meer/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ func (api *PublicMeerChainAPI) GetMeerChangeAddr() (interface{}, error) {

func (api *PublicMeerChainAPI) DeployMeerChange(owner common.Address) (interface{}, error) {
if api.mc.IsMeerChangeDeployed() {
log.Info("It has already been deployed, so ignore this operation")
log.Info("MeerChange has already been deployed, so ignore this operation")
return nil, nil
}
txHash, err := api.mc.DeterministicDeploymentProxy().DeployContract(owner, common.FromHex(meerchange.MeerchangeMetaData.Bin), meerchange.Version, nil, 0)
Expand Down
2 changes: 1 addition & 1 deletion meerevm/proxy/proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ func (ddp DeterministicDeploymentProxy) IsDeployed() bool {

func (ddp DeterministicDeploymentProxy) Deploy(owner common.Address) error {
if ddp.IsDeployed() {
log.Info("It has already been deployed, so ignore this operation")
log.Info("Proxy has already been deployed, so ignore this operation")
return nil
}
arg := map[string]interface{}{
Expand Down

0 comments on commit b63f3b8

Please sign in to comment.