From 299ec0b6b18ddea74289c0c0451d8d940d19d8ec Mon Sep 17 00:00:00 2001 From: Tianji Wu Date: Wed, 25 Sep 2019 14:38:39 +0800 Subject: [PATCH] Update README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 840f478..db33c34 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,8 @@ Go library for Libra canonical serialization (and deserialization). See [LCS Spec](https://github.com/libra/libra/tree/master/common/canonical_serialization). +For types defined and used in actual Libra blockchain, please visit [go-libra](https://github.com/the729/go-libra): Libra client library with crypto verifications. + ## Installation ```bash @@ -89,8 +91,8 @@ type isOption interface { isOption() } -// *Option0, *Option1 and Option2 are variants of isOption -// Use pointers for struct types. +// *Option0, Option1 and Option2 are variants of isOption +// Use pointer for (non-empty) struct. type Option0 struct { Data uint32 }