From 60f7680baaa90f67b50f52fb13abdcd8ff6714b2 Mon Sep 17 00:00:00 2001 From: "Jonathan \"Duke\" Leto" Date: Thu, 16 Jun 2022 10:55:48 -0700 Subject: [PATCH] start doc for devs --- DEVELOPING.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 DEVELOPING.md diff --git a/DEVELOPING.md b/DEVELOPING.md new file mode 100644 index 0000000..0582500 --- /dev/null +++ b/DEVELOPING.md @@ -0,0 +1,11 @@ +# Developing lightwalletd + +## Updating protobuf files + +To update `compact_formats.proto` + +``` +protoc --go_out=paths=source_relative:. compact_formats.proto +``` + +which will generate `compact_formats.pb.go`, then commit and push the changes.