File tree 1 file changed +4
-2
lines changed
solana/ts/src/matchingEngine
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1031,6 +1031,7 @@ export class MatchingEngineProgram {
1031
1031
const ixs = await this . placeInitialOfferCctpIx (
1032
1032
{
1033
1033
payer,
1034
+ feePayer : signers [ 0 ] ?. publicKey ,
1034
1035
fastVaa,
1035
1036
auction,
1036
1037
fromRouterEndpoint,
@@ -1054,6 +1055,7 @@ export class MatchingEngineProgram {
1054
1055
async placeInitialOfferCctpIx (
1055
1056
accounts : {
1056
1057
payer : PublicKey ;
1058
+ feePayer ?: PublicKey ;
1057
1059
fastVaa : PublicKey ;
1058
1060
offerToken ?: PublicKey ;
1059
1061
auction ?: PublicKey ;
@@ -1068,7 +1070,7 @@ export class MatchingEngineProgram {
1068
1070
) : Promise <
1069
1071
[ approveIx : TransactionInstruction , placeInitialOfferCctpIx : TransactionInstruction ]
1070
1072
> {
1071
- const { payer, fastVaa } = accounts ;
1073
+ const { payer, feePayer , fastVaa } = accounts ;
1072
1074
1073
1075
const { offerPrice } = args ;
1074
1076
@@ -1122,7 +1124,7 @@ export class MatchingEngineProgram {
1122
1124
const placeInitialOfferCctpIx = await this . program . methods
1123
1125
. placeInitialOfferCctp ( uint64ToBN ( offerPrice ) )
1124
1126
. accounts ( {
1125
- payer,
1127
+ payer : feePayer ?? payer ,
1126
1128
transferAuthority,
1127
1129
custodian : this . checkedCustodianComposite ( ) ,
1128
1130
auctionConfig,
You can’t perform that action at this time.
0 commit comments