Skip to content
This repository has been archived by the owner on Dec 1, 2023. It is now read-only.

Update invoke to execute #190

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/nile/base_project/tests/test_contract.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ async def test_increase_balance():
)

# Invoke increase_balance() twice.
await contract.increase_balance(amount=10).invoke()
await contract.increase_balance(amount=20).invoke()
await contract.increase_balance(amount=10).execute()
await contract.increase_balance(amount=20).execute()

# Check the result of get_balance().
execution_info = await contract.get_balance().call()
Expand Down