You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Basically, this issue is about resolving the following TODO in the code.
pub const DEFAULT_QUERY_COSTS: Costs = Costs {
// TODO: The cost of the `balance` and `balances` query should depend on the
// `OffChainDatabase::balances_enabled` value. If additional indexation is enabled,
// the cost should be cheaper.
balance_query: 40001,
coins_to_spend: 40001,
If the "balances" or "coins to spend" indexation is available in the particular instance of the client, these costs should be lower.
Please note that the default cost is no longer "const", as it depends on the flag in offchain DB metadata (indexation_availability flag).
The text was updated successfully, but these errors were encountered:
Basically, this issue is about resolving the following
TODO
in the code.If the "balances" or "coins to spend" indexation is available in the particular instance of the client, these costs should be lower.
Please note that the default cost is no longer "const", as it depends on the flag in offchain DB metadata (
indexation_availability
flag).The text was updated successfully, but these errors were encountered: