Skip to content

Commit

Permalink
Get Uin64 directly instead of Int64 (#5672)
Browse files Browse the repository at this point in the history
  • Loading branch information
Xuefeng-Zhu authored Feb 19, 2020
1 parent 1736692 commit 69c5b46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x/auth/types/txbuilder.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ func NewTxBuilderFromCLI(input io.Reader) TxBuilder {
}
txbldr := TxBuilder{
keybase: kb,
accountNumber: uint64(viper.GetInt64(flags.FlagAccountNumber)),
sequence: uint64(viper.GetInt64(flags.FlagSequence)),
accountNumber: viper.GetUint64(flags.FlagAccountNumber),
sequence: viper.GetUint64(flags.FlagSequence),
gas: flags.GasFlagVar.Gas,
gasAdjustment: viper.GetFloat64(flags.FlagGasAdjustment),
simulateAndExecute: flags.GasFlagVar.Simulate,
Expand Down

0 comments on commit 69c5b46

Please sign in to comment.