From 0d9a68a88884898fadacf008bb0182f83a50c255 Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Fri, 30 Nov 2018 16:42:01 +0900 Subject: [PATCH] move sigs in different directory --- contrib/FastSync/README.md | 13 +++++++------ .../FastSync/{ => sigs}/NicolasDorier.utxo-sets.asc | 0 .../FastSync/{ => sigs}/rockstardev.utxo-sets.asc | 0 3 files changed, 7 insertions(+), 6 deletions(-) rename contrib/FastSync/{ => sigs}/NicolasDorier.utxo-sets.asc (100%) rename contrib/FastSync/{ => sigs}/rockstardev.utxo-sets.asc (100%) diff --git a/contrib/FastSync/README.md b/contrib/FastSync/README.md index 56a1109..faca61e 100644 --- a/contrib/FastSync/README.md +++ b/contrib/FastSync/README.md @@ -61,13 +61,13 @@ NOTE: **Completing those steps does not mean that the UTXO set snapshot is legit ### If you trust someone else... -This repository contains the signatures of some developers, for example `NicolasDorier.utxo-sets.asc` contains the hashes that `NicolasDorier` verified himself. +This repository contains the signatures of some developers, for example [sigs/NicolasDorier.utxo-sets.asc](sigs/NicolasDorier.utxo-sets.asc) contains the hashes that `NicolasDorier` verified himself. You need to verify with [KeyBase command line](https://keybase.io/docs/command_line) that the signature is legit: ```bash -keybase pgp verify -i NicolasDorier.utxo-sets.asc +keybase pgp verify -i sigs/NicolasDorier.utxo-sets.asc ``` -If you don't like command line, you can verify against [keybase verify page](https://keybase.io/verify) by just copying and pasting the content of [NicolasDorier.utxo-sets.asc](NicolasDorier.utxo-sets.asc). +If you don't like command line, you can verify against [keybase verify page](https://keybase.io/verify) by just copying and pasting the content of [sigs/NicolasDorier.utxo-sets.asc](sigs/NicolasDorier.utxo-sets.asc). You can verify that the handle `NicolasDorier` refers to the person who controls `NicolasDorier` twitter, github and reddit handle on [the keybase profile page](https://keybase.io/NicolasDorier). @@ -106,10 +106,11 @@ If you are a bitcoin developer or public figure, feel free to add your signature 3. Create a file with same format as [utxo-sets](utxo-sets) with the snapshots you validated. (Let's call this file `YOU.utxo-sets`) 4. Run the following command line -``` -keybase pgp sign -i YOU.utxo-sets -c -t -o YOU.utxo-sets.asc +```bash +# Assuming your are inside the FastSync directory +keybase pgp sign -i YOU.utxo-sets -c -t -o sigs/YOU.utxo-sets.asc rm YOU.utxo-sets -git add YOU.utxo-sets.asc +git add sigs/YOU.utxo-sets.asc git commit -m "Add YOU utxo-set signature" -all ``` And make a pull request to `btcpayserver-docker` repository. diff --git a/contrib/FastSync/NicolasDorier.utxo-sets.asc b/contrib/FastSync/sigs/NicolasDorier.utxo-sets.asc similarity index 100% rename from contrib/FastSync/NicolasDorier.utxo-sets.asc rename to contrib/FastSync/sigs/NicolasDorier.utxo-sets.asc diff --git a/contrib/FastSync/rockstardev.utxo-sets.asc b/contrib/FastSync/sigs/rockstardev.utxo-sets.asc similarity index 100% rename from contrib/FastSync/rockstardev.utxo-sets.asc rename to contrib/FastSync/sigs/rockstardev.utxo-sets.asc