-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
R4R: Add fees and memo to REST, updated CLI to receive coins as fees #3069
Merged
Merged
Changes from all commits
Commits
Show all changes
62 commits
Select commit
Hold shift + click to select a range
b55e748
pending
f3d5279
Split endpoints and use utils
9bea121
Merge branch 'develop' of https://github.com/cosmos/cosmos-sdk into f…
dcd7ecd
fix lcd tests
5af8fd6
change input msg types
b19d9ed
update and rearrange swagger file
0ee236a
Updated swagger
5bd2544
update delegations to use POST
8b794d2
update pending
9286098
Update tx.go
fedekunze c4765b2
Merge branch 'develop' of https://github.com/cosmos/cosmos-sdk into f…
3f744f8
fix genOnly REST, closes #3020
6fd34a9
fixes based on tests
03771a3
fix lint
7959e0b
Add fees to REST, update CLI to receive multiple coins as fees, added…
41d5cae
update swagger
6f6a4f8
add helper example to fee flag
58d4b8f
remove sdk.Coin from fees
e4e537a
fix conflicts and update functions based on Alessio's PR
b4a307b
fix comments on cli_tests and added simulation update
a90fca5
Update cli_test.go
fedekunze db07298
fix conflicts
9c82e31
Merge branch 'jack/dry-rest-tests' of https://github.com/cosmos/cosmo…
91f0818
commit to pull split changes
e3c0eb3
use req.BaseReq everywhere
64e7e6b
cleanup test_helper
e76c5c5
Merge develop
e36daa7
update tests
1835560
fixed some tests
8049985
flags
714c659
fix conflicts from develop
c2a4444
add balance checks on tests
017c305
fixes and modifications in gas
6484813
more balance checks
d429779
add TxEncoder changes
64b2b3f
fix tests
4b59216
cleanup
aaeee73
PENDING
4358e63
fix lint
e687ac9
Apply suggestions from @alexanderbez
alexanderbez 5d033eb
Update rest.go
fedekunze d20d170
review fixes
1be6ade
rename flag '--fee' to '--fees'
b2190ff
Merge branch 'develop' into fedekunze/3067-fee-rest-txs
fedekunze 525d290
merge develop
bc8b60f
pending update
655014c
Merge branch 'develop' into fedekunze/3067-fee-rest-txs
fedekunze d5785c0
Merge branch 'develop' into fedekunze/3067-fee-rest-txs
jackzampolin 0fcc8b4
Merge branch 'develop' of https://github.com/cosmos/cosmos-sdk into f…
370ea59
fix tx builder
4dace37
Merge branch 'develop' into fedekunze/3067-fee-rest-txs
fedekunze c192cbc
update flag fee to fees
98797ab
Merge branch 'fedekunze/3067-fee-rest-txs' of https://github.com/cosm…
2809403
delete panics when no chain-id is provided
6e7db9d
make txBuilder's fields private
bc35c17
simulateAndExecute transaction
b376604
update swagger
0d4ee31
Update PENDING.md
fedekunze 82dae0e
minor fix
93356dd
Merge branch 'fedekunze/3067-fee-rest-txs' of https://github.com/cosm…
c907f3b
Merge branch 'develop' into fedekunze/3067-fee-rest-txs
fedekunze cfa723a
Update sign.go
fedekunze File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like some of these additions don't belong here...possible from a bad merge/rebase.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah it was from sunny's PR which had
PENDING
entries from other releases. Also that PR had breaking changes which weren't added (that's why I changed them here).Already talked with @jackzampolin and he said it was fine to do this changes on the
PENDING
here