Application is supposed to unlock the object/item to the user once it receives the PURCHASE_TRANSACTION_SUCCESS event. Once item is delivered to the user, application should mark the transaction as finished. Marking the transaction as finshed, indicates the app-store that the product has been delivered to the user. If for some reason, pendingTransaction queue builds up even after marking the transaction as finished, you can attempt to mark the pendingTransaction as finished after some time interval. I believe its safe to update the purchase state in shared object once you receive the PURCHASE_TRANSACTION_SUCCESS event. In all other scenarios i.e. transaction failure, cancel or no event from the server should be treated as purchase was not successful.
-Neha