Skip to content

Commit

Permalink
fix(apps): default sla on Using* contracts
Browse files Browse the repository at this point in the history
  • Loading branch information
guidiaz committed Mar 4, 2024
1 parent a218e0b commit 373b798
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/apps/UsingWitnet.sol
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ abstract contract UsingWitnet
__witnet = _wrb;
__witnetDefaultSLA = WitnetV2.RadonSLA({
// Number of nodes in the Witnet blockchain that will take part in solving the data request:
committeeSize: 7,
committeeSize: 10,
// Fee in $nanoWIT paid to every node in the Witnet blockchain involved in solving the data request:
witnessingFeeNanoWit: 10 ** 9
witnessingFeeNanoWit: 20 * 10 ** 8 // defaults to 0.2 $WIT
});

__witnetBaseFeeOverheadPercentage = 10; // defaults to 10%
Expand Down

0 comments on commit 373b798

Please sign in to comment.