Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
gallynaut committed Jun 26, 2023
1 parent 68e1817 commit ef5f3e2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions javascript/solana.js/src/accounts/functionAccount.ts
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,8 @@ export class FunctionAccount extends Account<types.FunctionAccountData> {
recentSlot: recentSlot,
requestsDisabled: false,
requestsRequireAuthorization: false,
requestsDefaultSlotsUntilExpiration: new anchor.BN(1000),
requestsRequestFee: new anchor.BN(0),
requestsDefaultSlotsUntilExpiration: new BN(1000),
requestsRequestFee: new BN(0),
},
},
{
Expand Down Expand Up @@ -383,8 +383,8 @@ export class FunctionAccount extends Account<types.FunctionAccountData> {
mrEnclaves: [],
requestsDisabled: false,
requestsRequireAuthorization: false,
requestsDefaultSlotsUntilExpiration: new anchor.BN(1000),
requestsRequestFee: new anchor.BN(0),
requestsDefaultSlotsUntilExpiration: new BN(1000),
requestsRequestFee: new BN(0),
},
},
{
Expand Down

0 comments on commit ef5f3e2

Please sign in to comment.