Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions e2e/node/canisters/counter.mo
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
actor Counter {
var cell : Nat = 0;
persistent actor Counter {
transient var cell : Nat = 0;

public func greet(name : Text) : async Text {
return "Hello, " # name # "!";
Expand Down
2 changes: 1 addition & 1 deletion e2e/node/canisters/trap.mo
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Debug "mo:base/Debug";
import Error "mo:base/Error";

actor {
persistent actor {

func doTrap (n:Nat) {
if (n <= 0)
Expand Down
Loading