Created
November 19, 2018 16:40
-
-
Save ysv/887231c371218ef82de4e967d0d9633c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
deposits = [ | |
{ member_id: 1, currency_id: :usd, amount: 1000 }, | |
{ member_id: 1, currency_id: :eur, amount: 2000 }, | |
{ member_id: 2, currency_id: :usd, amount: 100 }, | |
{ member_id: 2, currency_id: :eur, amount: 200 } | |
] | |
deposits.map do |d| | |
Deposits::Fiat.create!(d).tap(&:accept!) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment