Michal Nazarewicz

Results 60 issues of Michal Nazarewicz

Now that we have `--color` command line option, we don’t need `log_summary_style` in config file any longer.

C-good-first-issue

On code level this is a trivial change. Simply change `DEFAULT_RUST_LOG` to be `"info"`. The complication is to observe what that change actually does (e.g. how many more logs a...

C-good-first-issue

DBCol::ChunkHashesByHeight is indexed by height and contains `Vec` values. DBCol::ChunkPerHeightShard is indexed by (height, shard) and contains `ChunkHash` values. It looks like the two columns contain the exact same data....

P-low

We’re currently using little endian to encode keys in the database. This is done with `index_to_bytes` function seen below: ```rust pub fn index_to_bytes(index: u64) -> [u8; 8] { index.to_le_bytes() }...

Re-escape characters in data to minimise code further. In data sections only ampersand and less-than sign need to be escaped. Since characters are always shorter than their entities not escaping...

#### Problem Any crate which wants to use Solana syscalls need to depend on the entire solana-program crate. This pulls in a lot of dependencies which is undesired for utility...

community

Fixes: https://github.com/marshallpierce/rust-base64/issues/210 Fixes: https://github.com/marshallpierce/rust-base64/issues/212

The wording around Write::write method is changing with requirement that it maps to ‘at most one write’ being removed¹. With that, change EncoderWriter::write so that it flushes entire output buffer...

I’d like to be able to generate my own `entrypoint` function so that I can execute code before any other code (this includes Anchor’s entry function as well as `entrypoint`...

enhancement
lang

Considering that Result is included in Anchor’s prelude, it’s quite annoying when one suddenly needs to use Result with a different error than Anchor’s Error (i.e. use the symbol `Result`...

lang
probably will close