Skip to content

Commit

Permalink
candid file updates
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemann committed Oct 4, 2023
1 parent 677f5ca commit 80a8937
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions examples/cycles/src/cycles/index.did
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
service: () -> {
receiveCycles: () -> (nat64);
receiveCycles128: () -> (nat);
getCanisterBalance: () -> (nat64) query;
getCanisterBalance128: () -> (nat) query;
receiveCycles: () -> (nat64);
receiveCycles128: () -> (nat);
}
6 changes: 3 additions & 3 deletions examples/cycles/src/intermediary/index.did
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
service: () -> {
getCanisterBalance: () -> (nat64) query;
getCanisterBalance128: () -> (nat) query;
sendCycles: () -> (nat64);
sendCyclesNotify: () -> ();
sendCycles128: () -> (nat);
sendCycles128Notify: () -> ();
getCanisterBalance: () -> (nat64) query;
getCanisterBalance128: () -> (nat) query;
sendCyclesNotify: () -> ();
}
2 changes: 1 addition & 1 deletion examples/motoko_examples/persistent-storage/src/index.did
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
service: () -> {
get: () -> (nat) query;
getRedeployed: () -> (bool) query;
increment: () -> (nat);
get: () -> (nat) query;
reset: () -> (nat);
}

0 comments on commit 80a8937

Please sign in to comment.