Skip to content

Commit

Permalink
Merge pull request #985 from LLLeon/master
Browse files Browse the repository at this point in the history
modify bad syntax for struct tag value
  • Loading branch information
rigelrozanski authored May 14, 2018
2 parents 9f3444d + f1e4413 commit 64f445e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions types/tx_msg.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ func FeePayer(tx Tx) Address {
// gas to be used by the transaction. The ratio yields an effective "gasprice",
// which must be above some miminum to be accepted into the mempool.
type StdFee struct {
Amount Coins `json"amount"`
Gas int64 `json"gas"`
Amount Coins `json:"amount"`
Gas int64 `json:"gas"`
}

func NewStdFee(gas int64, amount ...Coin) StdFee {
Expand Down
2 changes: 1 addition & 1 deletion x/bank/msgs.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ func (msg MsgIssue) GetSigners() []sdk.Address {
//----------------------------------------
// Input

// Transaction Output
// Transaction Input
type Input struct {
Address sdk.Address `json:"address"`
Coins sdk.Coins `json:"coins"`
Expand Down

0 comments on commit 64f445e

Please sign in to comment.