Skip to content

Commit

Permalink
change web3Provider call method visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
peterjah committed Oct 3, 2024
1 parent 15e1585 commit aec048a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/provider/web3Provider/smartContracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class SCProvider {
* @param params - callSCParams.
* @returns A promise that resolves to an Operation object representing the transaction.
*/
public async call(params: CallSCParams): Promise<string> {
protected async call(params: CallSCParams): Promise<string> {
const coins = params.coins ?? 0n
await this.checkAccountBalance(coins)

Expand Down

1 comment on commit aec048a

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report for experimental massa-web3

St.
Category Percentage Covered / Total
🟡 Statements 63.28% 1134/1792
🔴 Branches 43.41% 191/440
🔴 Functions 46.44% 209/450
🟡 Lines 63.62% 1128/1773

Test suite run success

129 tests passing in 13 suites.

Report generated by 🧪jest coverage report action from aec048a

Please sign in to comment.