Skip to content

Commit

Permalink
gas price logs
Browse files Browse the repository at this point in the history
  • Loading branch information
avendauz committed Jul 31, 2021
1 parent 709183b commit dd95544
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion x/curium/keeper/keeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -184,16 +184,20 @@ func DoBroadcast (resp chan *MsgBroadcasterResponse, keyringDir string, cdc *cod
fmt.Println("GETTING ACCOUNT")
accnt := accKeeper.GetAccount(ctx, addr)

fmt.Println("Break 3")


if accnt == nil {
returnError(errors.New("from account does not exist"))
return
}

fmt.Println("Break 3")


fmt.Println("Getting gas price")
gasPrice, err := getGasPriceUbnt()
fmt.Println("After getting gas price")


if err != nil {
returnError(err)
Expand Down

0 comments on commit dd95544

Please sign in to comment.