From d55ef1adac4aef0a71efcf7b4e1e19f0bc40e091 Mon Sep 17 00:00:00 2001 From: Milos Zivkovic Date: Wed, 13 Mar 2024 21:47:04 +0100 Subject: [PATCH] Fix typo --- handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handler.go b/handler.go index 15d25b3..90ba4d6 100644 --- a/handler.go +++ b/handler.go @@ -190,7 +190,7 @@ func extractSendAmount(request Request) (std.Coins, error) { return std.Coins{}, nil } - // Validate the send amount valid + // Validate the send amount is valid if !amountRegex.MatchString(request.Amount) { return std.Coins{}, errInvalidSendAmount }