You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Should stop observation of the transactions that transfer fund to the address . Should affect result of the [GET] /api/transactions/history/to/{address} .
Errors:
* `204 No content` : transactions to the address are not observed.
Python implementation
@api.route('/transactions/history/to/<string:address>/observation', methods=['DELETE'])defdel_history_to_address(address):
""" Stops observation of the transactions that transfer fund to the address """result=delete_transaction_observation_to_address(address)
# if successfully deleted from observation list, return a plain 200if"error"inresult:
returnmake_response(jsonify(build_error(result["error"])), result["status"])
else:
return""
The text was updated successfully, but these errors were encountered:
[DELETE] /api/transactions/history/to/{address}/observation
Should stop observation of the transactions that transfer fund to the address . Should affect result of the
[GET] /api/transactions/history/to/{address}
.Errors:
Python implementation
The text was updated successfully, but these errors were encountered: