유동성을 사용하여 문자열을 어떻게 tez로 강제 변환 할 수 있습니까? 9 132 2019-02-05 문서에는 다음 내용이 나와 있습니다. tez : an unbounded positive float of Tezzies, written either with a tz suffix (1.00tz, etc.) or as a string with type coercion ("1.00" : tez). 그러나 Liquidity의 다음 예에서는 오류가 발생합니다. if amount < ("5.00": tez) then Current.failwith "Not enough money, at least 5tz to vote" nat에 대한 유형 강제는 예상대로 작동하지만 : Github 문제는 여기에서 찾을 수 있습니다. Documentation states the following: tez : an unbounded positive float of Tezzies, written either with a tz suffix (1.00tz, etc.) or as a string with type coercion ("1.00" : tez). Yet the following example in Liquidity produces an error: if amount < ("5.00": tez) then Current.failwith "Not enough money, at least 5tz to vote" While type coercion for nat works as expected: Github issue can be found here smart-contracts liquidity 출처 Matej maht0rz Šima 12 행에있는 금액의 유형과 값은 무엇입니까? what is the type and value of amount on line 12? 0 2019-02-05 cousinit 여기 질문에 언급 된 예 (demo.liq)를 시도해 볼 수 있습니다. http://www.liquidity-lang.org/zeronet/ You can try the example mentioned in the question here (demo.liq): http://www.liquidity-lang.org/zeronet/ 0 2019-02-05 Matej maht0rz Šima 1 대답 투표 7 2019-02-06 이 기능은 더 이상 Liquidity에서 사용할 수 없으며이 경우 문서가 올바르지 않습니다.Liquidity Lead Dev 여기 에서 답장을 읽을 수 있습니다. So apparently, this feature is no longer available in Liquidity, and the docs are incorrect in this case. You can read a reply from Liquidity Lead Dev here. 출처 Matej maht0rz Šima
문서에는 다음 내용이 나와 있습니다.
그러나 Liquidity의 다음 예에서는 오류가 발생합니다.
nat
에 대한 유형 강제는 예상대로 작동하지만 :Github 문제는 여기에서 찾을 수 있습니다.