Skip to content

Commit

Permalink
types: modify bad syntax for struct tag value
Browse files Browse the repository at this point in the history
  • Loading branch information
LLLeon committed May 13, 2018
1 parent 0fb1897 commit 5da41a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions types/tx_msg.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,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

0 comments on commit 5da41a6

Please sign in to comment.