Replies: 4 comments 3 replies
-
Nope, no changes |
Beta Was this translation helpful? Give feedback.
0 replies
-
What could be the issue ? |
Beta Was this translation helpful? Give feedback.
1 reply
-
.api(UserApi.GetJASIRIS,
((Wera)=>{pry(Wera,this)}),
((Wera)=> FPay(0,0,JASIRI)),
((Wera, fn)=> {
const [aV,fee] = poke(Wera,this)
const SB = balance(JASIRI) + aV + fee
transfer(aV, JASIRI).to(this)
const adr = Wera.OwnerAddress
const pot = AddPot.fromTuple([adr,fee])
const opts = {apps:[poolCompanion],fees:1,accounts:[poolReferee,adr]}
const py = [0,[fee,JASIRI]]
const [v,x] = poolRemote.Pot_put.pay(py).ALGO(opts)(pot)))
.api(Pot.put,
((y) => isAdmin(this)),
((y) => {
const fee = y.Stake
return [0,[fee,UNLOCK]]
}),
((y,r)=> {
isAdmin(this)
const adr = y.Address
const fee = y.Stake
if(PotterID.member(adr)){
const stake = fromSome(Potter[adr],0)
const topup = stake + fee
Potter[adr] = topup}
else {
PotterID.insert(adr)
Potter[adr] = fee
}
const reUp = fromSome(Potter[adr],0)
transfer(fee,UNLOCK).to(RA)
Referee.interact.call(true,fee,adr)
r([true, reUp])
return [true]
}))
|
Beta Was this translation helpful? Give feedback.
1 reply
-
Im' compiling with 13 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Were there any changes to the remote calls, when I make the same call on v 0.1.1.12 it works but when I try it on the latest version I get this error:
Beta Was this translation helpful? Give feedback.
All reactions