Skip to content

Instantly share code, notes, and snippets.

@zackshapiro
Created November 18, 2014 22:49
Show Gist options
  • Save zackshapiro/ddead39f839b73a08a29 to your computer and use it in GitHub Desktop.
Save zackshapiro/ddead39f839b73a08a29 to your computer and use it in GitHub Desktop.
# /app/models.order.rb
def sell_users_coins
begin
client = user.create_client
balance = user.balance(client)
# some code related to selling the actual bitcoins
# logic, edge case checks, etc.
rescue Coinbase::Error => e
if e.message == "You don't have that many bitcoins in your account to sell."
# do some stuff
end
ensure
user.update_credentials(client)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment