Malte Kliemann

Results 92 comments of Malte Kliemann

As @prideout mentioned, using `VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT` combined with `VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT` memory is correct. The idea is that lazy memory allocation prevents allocations for the multisample color attachment, which is only used as...

@shawntabrizi I believe you're looking at the wrong function. Isn't the payment info populated by [query_info](https://github.com/paritytech/substrate/blob/49a4b1822e19e5b82c59ba5b36a1d7997f0a3929/frame/transaction-payment/src/lib.rs#L405)? I mean... the transaction info cannot contain any information about the tip before signing,...

@shawntabrizi Thank you for helping again, Shawn. I'm fairly clueless about javascript/typescript, so I'm not sure exactly how the code of polkadot.js works. But I think we may not be...

What do you mean by "starting from `market.period`"? The market period has a `start` and `end` field. Which one are you refering to?

The oracle delay starts when the market closes (i.e. at `period.end`). That's why it's set to 16 days in the example given above. The oracle duration starts when the oracle...

- Users pay an entry-fee for the market: Before they can trade, they pay x% of the market bond. Means that if a market attracts at least 100/x users, the...

To elaborate: Testing something like "If a user join and exits a pool and exits it with the same amount, the balance should not change" (see p. 8 of https://github.com/balancer-labs/balancer-core/blob/master/Trail%20of%20Bits%20Full%20Audit.pdf)...

This is by design. Think about how it used to be in `simple-disputes`: Someone disputes A, then someone disputes B. Should A be off the table forever now? No, of...

Just a couple of notes: - To prevent people from "front"-running `approve` calls with metadata edits, markets should be non-editable by default. When an advisor requests a change, the market...