Fix bug for parsing YWallet memos
This commit is contained in:
parent
8e05df0727
commit
849f1d9120
1 changed files with 2 additions and 3 deletions
|
@ -119,6 +119,7 @@ type Parser = Parsec Void T.Text
|
||||||
|
|
||||||
pSession :: Parser MemoToken
|
pSession :: Parser MemoToken
|
||||||
pSession = do
|
pSession = do
|
||||||
|
optional spaceChar
|
||||||
string "ZGO"
|
string "ZGO"
|
||||||
pay <- optional $ char 'p'
|
pay <- optional $ char 'p'
|
||||||
string "::"
|
string "::"
|
||||||
|
@ -142,9 +143,7 @@ pSaplingAddress = do
|
||||||
pMsg :: Parser MemoToken
|
pMsg :: Parser MemoToken
|
||||||
pMsg = do
|
pMsg = do
|
||||||
Msg . T.pack <$>
|
Msg . T.pack <$>
|
||||||
some
|
some (alphaNumChar <|> punctuationChar <|> charCategory OtherSymbol)
|
||||||
(alphaNumChar <|> punctuationChar <|> symbolChar <|>
|
|
||||||
charCategory OtherSymbol)
|
|
||||||
|
|
||||||
pMemo :: Parser MemoToken
|
pMemo :: Parser MemoToken
|
||||||
pMemo = do
|
pMemo = do
|
||||||
|
|
Loading…
Reference in a new issue