GithubHelp home page GithubHelp logo

Comments (4)

rphmeier avatar rphmeier commented on May 18, 2024

When new end-points are added, they are added not just to their native crate, but also to one if its dependencies, making no sense.

The rationale for this is based on the idea that the runtime implementation is a user of these transaction types as opposed to their owner. We can imagine a tree

                   ----- runtime
                 /
primitives <--- X
                 \
                   ----- stake-wallet-app

for example.

That said, I don't think it's terrible to have crates which are meant to interact with the runtime just link to it and import the types.

What I would really like to avoid is any kind of partial deserialization where we just pass bytes into submodules over and over again.

StartPublicReferendum(Box<Proposal>, Format)

IMO this is actually the correct way to express this relationship in Rust. The alternative is to replace the Box<Proposal> with a Vec<u8> and document that the member must be a correctly serialized proposal (note: this doesn't actually reduce allocations or overhead).

We should steer away from types which can't be resolved at deserialization time in general. Although in this specific case we might just want to consider splitting off StartPublicReferendum from the rest of the proposals: I don't think it's desired behavior to be able to create an unbounded chain of referenda to be started but rather just a single one.

It should be possible to create a generic solution that handles the sub-dispatch to modules.

from substrate.

gavofyork avatar gavofyork commented on May 18, 2024

The real dependency graph is actually this:

                         runtime
                         +-------------------------------------+
                         |                                     |
                         |  governance module ++               |
                         |                     |               |
                         |  staking module     |               |
   primitives <----------+                     +-+ dispatcher  |  <-------+ Transaction  <------+  Native Auxilliaries
                         |  system module      |               |
                         |                     |               |
                         |  other modules...  ++               |
                         |                                     |
                         +-------------------------------------+

By placing Transaction in primitives you're entirely disregarding the semantic dependencies and that's why everything is so broken.

from substrate.

gavofyork avatar gavofyork commented on May 18, 2024

I understand your reticence (as a good and loyal rustacean) to use serialised data any more than the strict minimum. However, I fear this attitude is rather throwing the rest of the design under the bus for the sake of a fuzzy feeling that you're doing things by the book.

Option 2 would result in one fewer allocation (since you'd never need to fart around with Boxes at all). It might also reduce the complexity of any automated dispatch system since there would be no special cases for functions that accept Proposal.

from substrate.

gavofyork avatar gavofyork commented on May 18, 2024

Although in this specific case we might just want to consider splitting off StartPublicReferendum from the rest of the proposals

This sentiment scares me a lot more than late deserialisation.

from substrate.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.