Skip to content

Commit

Permalink
Fixes inadvertent change in Coin address
Browse files Browse the repository at this point in the history
  • Loading branch information
anson-vandoren authored and bors-libra committed Mar 8, 2021
1 parent 763c894 commit 89dedd1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions developers.diem.com/docs/move/creating-coins.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ Let's create a function in `Coin.move` to create coins. We'll call our function
```=
address 0x1 {
address 0x2 {
module Coin {

struct Coin {
Expand All @@ -156,7 +156,7 @@ With this change, we should be able to update our script `test-coin.move` to cal
```=
script {
use 0x1::Coin;
use 0x2::Coin;
fun main() {
let _coin = Coin::mint(100);
Expand Down

0 comments on commit 89dedd1

Please sign in to comment.