-
Tests in question are `parachains/integration-tests`. @rphmeier suggested the issue is related to
https://github.com/paritytech/cumulus/blob/31b1469d830aaa7b0441d4d60f0c0c17be0cf114/xcm/xcm-emulator/…
-
```
change this code from:
for(int i = 0; i < 16; i++)
{
Vector3 color = set.color(i).xyz();
float d0 = colorDistance(palette[0], color);
float d1 = colorDistance(pal…
-
Based on the forum discussion at https://forum.polkadot.network/t/rfc-trustless-in-code-auditing-annotations/988 and some internal discussions, it has become clear there is significant desire within F…
-
Risk: Moderate severity
## Issue
In pallets messenger and transaction-payment, the fee calculation for messages or transactions is delegated to the `WeightToFee` implementation which can be conf…
-
FRAME is mostly centered around purpose-built chains, where all pallets or calls a runtime exposes have equal priority, in the sense that a chain's blockspace is allocated to all its pallets with equa…
-
Came across some issues with how we are running benchmarks with @enddynayn
1. The `frequency-bench` chain is enabled for the `frequency` feature, but should only be enabled for `runtime-benchmarks…
-
We've removed a lot of code (#1638) because the architecture has been changed significantly. And now we have some options to make pallets configuration easier. That's a task for the future (after init…
-
## Problem Description
The typehint of
```python
db.relationship("...", secondary=..., back_populates="...")
```
should be `sq_orm.Relationship[...]`, not `sq_orm.RelationshipProperty[...]`…
-
Hi Heidi
We have an issue with the Intended Purchase Price since this update. We do not change the Purchase Price for Output pallets - now if a purchase price is not entered the price is set as 0.0…
-
Explain the difference between `fn` in the define block and `fn` and `pub fn` in an extra `impl`-Block in a substrate pallet. Do they differ? How? Which one to use when?