scrolls icon indicating copy to clipboard operation
scrolls copied to clipboard

feat: script by hash reducer

Open MartinSchere opened this issue 2 years ago • 3 comments

In progress

  • Finds the script in the witness set
  • Hashes it to get the key and stores it using the LastWriteWins CRDT
  • Had to remove some #[cfg(feature = "unstable")] as it was skipping some stuff in my linter

MartinSchere avatar Jun 10 '22 04:06 MartinSchere

I could get the correct information to send_set_add, however, for some reason, it's not getting stored to Redis. I probably missed some boilerplate regarding that.

MartinSchere avatar Jun 10 '22 04:06 MartinSchere

I had the same issue, when something is part of cfg unstable, linter skips this in vscode (rust-analyzer)

matiwinnetou avatar Jun 10 '22 13:06 matiwinnetou

if you're using VSCode, try adding "rust-analyzer.cargo.features": "all" to you settings.json

scarmuega avatar Jun 10 '22 13:06 scarmuega