Replies: 4 comments 3 replies
|
Nope, no changes |
0 replies
|
What could be the issue ? |
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]
})) |
1 reply
|
Im' compiling with 13 |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
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:
Error: UserApi.GetJASIRIS errored with Error: API call failed: { "type": "signAndPost", "e": { "status": 400, "response": { "message": "TransactionPool.Remember: transaction G6QL43D2QFAZMOFZQAIUE2CFJDDLPIMGX5GJW4RE5PXNFF76QCWA: logic eval error: logic eval error: assert failed pc=556. Details: pc=556, opcodes=load 20\n==\nassert\n. Details: pc=997, opcodes=load 21\nitxn_field Applications\nitxn_submit\n" } }, "es": "Error: Network request error. Received status 400: TransactionPool.Remember: transaction G6QL43D2QFAZMOFZQAIUE2CFJDDLPIMGX5GJW4RE5PXNFF76QCWA: logic eval error: logic eval error: assert failed pc=556. Details: pc=556, opcodes=load 20\n==\nassert\n. Details: pc=997, opcodes=load 21\nitxn_field Applications\nitxn_submit\n" } at /stdlib/dist/cjs/shared_impl.js:345:34 at processTicksAndRejections (node:internal/process/task_queues:96:5)All reactions