Skip to content

Commit

Permalink
Fix cmd print message
Browse files Browse the repository at this point in the history
  • Loading branch information
gmajor-encrypt committed Sep 5, 2024
1 parent be79d3d commit a594efd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ func subCommands() []cli.Command {
if err != nil {
return err
}
log.Print("send HRMP message success, tx hash: ", txHash)
log.Print("send DMP message success, tx hash: ", txHash)
return nil
},
},
Expand Down Expand Up @@ -152,7 +152,7 @@ func subCommands() []cli.Command {
if err != nil {
return err
}
log.Print("send HRMP message success, tx hash: ", txHash)
log.Print("send EthBridge message success, tx hash: ", txHash)
return nil
},
},
Expand Down Expand Up @@ -186,7 +186,7 @@ func subCommands() []cli.Command {
if err != nil {
return err
}
log.Print("send HRMP message success, tx hash: ", txHash)
log.Print("send S2SBridge message success, tx hash: ", txHash)
return nil
},
},
Expand Down

0 comments on commit a594efd

Please sign in to comment.