@@ -11,14 +11,14 @@ import (
11
11
"time"
12
12
13
13
"github.com/MixinNetwork/bot-api-go-client/v3"
14
+ solanaApp "github.com/MixinNetwork/computer/apps/solana"
15
+ "github.com/MixinNetwork/computer/store"
14
16
mc "github.com/MixinNetwork/mixin/common"
15
17
"github.com/MixinNetwork/mixin/crypto"
16
18
"github.com/MixinNetwork/mixin/logger"
17
19
"github.com/MixinNetwork/mixin/util/base58"
18
20
"github.com/MixinNetwork/safe/apps/mixin"
19
- solanaApp "github.com/MixinNetwork/computer/apps/solana"
20
21
"github.com/MixinNetwork/safe/common"
21
- "github.com/MixinNetwork/computer/store"
22
22
"github.com/MixinNetwork/safe/mtg"
23
23
"github.com/gagliardetto/solana-go"
24
24
"github.com/gofrs/uuid/v5"
@@ -512,7 +512,7 @@ func (node *Node) processConfirmCall(ctx context.Context, req *store.Request) ([
512
512
}
513
513
outputs = os
514
514
515
- post , err = node .getPostProcessCall (ctx , req , call , extra [n * 64 :])
515
+ post , err = node .getPostProcessCall (ctx , req , flag , call , extra [n * 64 :])
516
516
logger .Printf ("node.getPostProcessCall(%v %v) => %v %v" , req , call , post , err )
517
517
if err != nil {
518
518
return node .failRequest (ctx , req , "" )
@@ -568,7 +568,7 @@ func (node *Node) processConfirmCall(ctx context.Context, req *store.Request) ([
568
568
}
569
569
570
570
var session * store.Session
571
- post , err := node .getPostProcessCall (ctx , req , call , extra [16 :])
571
+ post , err := node .getPostProcessCall (ctx , req , flag , call , extra [16 :])
572
572
logger .Printf ("node.getPostProcessCall(%v %v) => %v %v" , req , call , post , err )
573
573
if err != nil {
574
574
return node .failRequest (ctx , req , "" )
0 commit comments