diff --git a/master/CHANGELOG/index.html b/master/CHANGELOG/index.html index 5fc4af9..5456913 100644 --- a/master/CHANGELOG/index.html +++ b/master/CHANGELOG/index.html @@ -1307,8 +1307,7 @@ and this project adheres to Semant

Changed

Changed

There are also convenience functions split, concat, to_upper, @@ -1413,14 +1409,13 @@ contract C = transaction and the transaction hash is available Auth.tx, it is only available during authentication if invoked by a normal contract call it returns None. Example: -

switch(Auth.tx)
-  None      => abort("Not in Auth context")
-  Some(tx0) =>
-    switch(tx0.tx)
-      Chain.SpendTx(_, amount, _)  => amount > 400
-      Chain.ContractCallTx(_, _)   => true
-      _                            => false
-
+ switch(Auth.tx) + None => abort("Not in Auth context") + Some(tx0) => + switch(tx0.tx) + Chain.SpendTx(_, amount, _) => amount > 400 + Chain.ContractCallTx(_, _) => true + _ => false - A debug mode is a added to the compiler. Right now its only use is to turn off hermetization.

Changed

@@ -1469,21 +1464,18 @@ contract C =

Changed