Skip to content

Commit

Permalink
fix test faucet issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tj327 committed Nov 21, 2023
1 parent be38dd5 commit 58f43cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gateway/interx/faucet.go
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ func serveFaucet(r *http.Request, gwCosmosmux *runtime.ServeMux, request types.I
msgs := []sdk.Msg{msgSend}
fee := legacytx.NewStdFee(200000, sdk.NewCoins(feeAmount)) //Fee handling
memo := "Faucet Transfer"
tip := &tx.Tip{Amount: msgSend.Amount, Tipper: ""}
tip := &tx.Tip{Amount: msgSend.Amount, Tipper: "test"}

sigs := make([]legacytx.StdSignature, 1)
signBytes := legacytx.StdSignBytes(common.NodeStatus.Chainid, accountNumber, sequence, 0, fee, msgs, memo, tip)
Expand Down

0 comments on commit 58f43cb

Please sign in to comment.