Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
zamrokk committed Sep 29, 2023
1 parent 458476d commit 0058acf
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,13 +201,9 @@ export const _testPoke = (
const testSender1Poke =
(
(): unit => {
const [taddr, _, _2] =
Test.originate_module(
contract_of(PokeGame),
initial_storage,
initial_tez
);
_testPoke(taddr, sender1);
const orig =
Test.originate(contract_of(PokeGame), initial_storage, initial_tez);
_testPoke(orig.addr, sender1);
}
)();
```
Expand Down

0 comments on commit 0058acf

Please sign in to comment.