Skip to content

Commit

Permalink
fix deposit transactions (#570)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bitcoinera authored Apr 6, 2020
1 parent 1c9224d commit 97b4c11
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/reducers/cosmosV2-reducers.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,10 @@ function voteProposalDetailsReducer(message) {
}
}

// TO TEST!
function depositDetailsReducer(message, reducers) {
return {
proposalId: message.proposal_id,
amount: reducers.coinReducer(message.amount)
amount: reducers.coinReducer(message.amount[0])
}
}

Expand Down

0 comments on commit 97b4c11

Please sign in to comment.