ECC-1767: Make new keys read-only

This commit is contained in:
shahramn 2024-02-29 16:52:47 +00:00
parent 457fad4348
commit ec5223618c
1 changed files with 2 additions and 2 deletions

View File

@ -15,5 +15,5 @@ alias firstWavelengthInMetres = firstWavelength;
alias secondWavelengthInMetres = secondWavelength;
constant billion = 1000000000 : hidden;
meta firstWavelengthInNanometres multdouble(firstWavelength, billion);
meta secondWavelengthInNanometres multdouble(secondWavelength, billion);
meta firstWavelengthInNanometres multdouble(firstWavelength, billion) : read_only;
meta secondWavelengthInNanometres multdouble(secondWavelength, billion) : read_only;