-
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
Add Fee granter field #7418
Merged
Merged
Add Fee granter field #7418
Changes from 1 commit
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
efe59e0
WIP on adding Fee granter field
aaronc 6f24320
WIP on adding Fee granter field
aaronc 281668f
Merge branch 'master' of https://github.com/cosmos/cosmos-sdk into aa…
aaronc 3c8340a
Merge branch 'master' of https://github.com/cosmos/cosmos-sdk into aa…
aaronc 7c7005d
Merge branch 'master' of https://github.com/cosmos/cosmos-sdk into aa…
aaronc 2f5aaf1
WIP on adding Fee granter field
aaronc 6232998
Update comments, add tests
aaronc d14ec35
Merge branch 'master' of https://github.com/cosmos/cosmos-sdk into aa…
aaronc aefa15d
Merge branch 'master' into aaronc/fee-granter-field
aaronc 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
Original file line number | Diff line number | Diff line change | ||||||
---|---|---|---|---|---|---|---|---|
|
@@ -67,6 +67,9 @@ func TestStdTx(t *testing.T) { | |||||||
|
||||||||
feePayer := tx.GetSigners()[0] | ||||||||
require.Equal(t, addr, feePayer) | ||||||||
|
||||||||
feeGranter := tx.FeeGranter() | ||||||||
require.Empty(t, feeGranter) | ||||||||
Comment on lines
+71
to
+72
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||
} | ||||||||
|
||||||||
func TestStdSignBytes(t *testing.T) { | ||||||||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -289,3 +289,25 @@ func TestBuilderFeePayer(t *testing.T) { | |
}) | ||
} | ||
} | ||
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.
👍