Skip to content

Commit 8c2f06b

Browse files
committed
[examples] Fix faucet 0 tokens
1 parent 4839805 commit 8c2f06b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/simulate_transfer_coin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ async def main():
4646
)
4747

4848
print("\n=== Simulate after creating Bob's Account ===")
49-
await faucet_client.fund_account(bob.address(), 0)
49+
await faucet_client.fund_account(bob.address(), 1)
5050
output = await rest_client.simulate_transaction(transaction, alice)
5151
assert output[0]["vm_status"] == "Executed successfully", "This should succeed"
5252
print(json.dumps(output, indent=4, sort_keys=True))

0 commit comments

Comments
 (0)