Tim Heng

Results 2 issues of Tim Heng

This line of example code for Python throws a syntax error on the `asset` argument. ```python .append_payment_op(destination=destination_id, amount="10", asset=Asset("XLM")) ``` It should be: ```python .append_payment_op(destination=destination_id, amount="10", asset_code="XLM") ```