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 forget the wallet address and stop observing its balance.
Errors:
■ 204 No content - specified address is not observed
Python implementation
@api.route('/balances/<string:address>/observation', methods=['DELETE'])defdelete_observation(address):
""" Delete the specified address from observation list """result=delete_address_observation(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/balances/{address}/observation
Should forget the wallet address and stop observing its balance.
Errors:
■ 204 No content - specified address is not observed
Python implementation
The text was updated successfully, but these errors were encountered: