This commit is contained in:
PhiTer9426
2022-05-02 23:12:25 +08:00
parent a536e8e11f
commit 398869c9a6
14 changed files with 507 additions and 53 deletions

View File

@@ -1,12 +1,11 @@
oracle ContractExample {
function onCreate(){
Global.owner = requester;
function onCreate() {
Global.owner = requester;
}
export function callHello(arg) {
return Hello.call()+requester;
}
export function getOwner() {
return Global.owner;
}
export function callHello(arg){
return Hello.call()+requester;
}
export function getOwner(){
return Global.owner;
}
}