From c98ce3abdb9d2793605547574314c468eabe2f6b Mon Sep 17 00:00:00 2001 From: Haifeng Xi Date: Thu, 1 Jul 2021 16:15:59 +0800 Subject: [PATCH] fix code formatting --- docs/architecture/adr-043-nft-module.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/architecture/adr-043-nft-module.md b/docs/architecture/adr-043-nft-module.md index e8c73098a4..cce0a2e3ca 100644 --- a/docs/architecture/adr-043-nft-module.md +++ b/docs/architecture/adr-043-nft-module.md @@ -107,6 +107,7 @@ message MsgSend { string reveiver = 4; } message MsgSendResponse {} +``` `MsgSend` can be used to transfer the ownership of an NFT to another address. @@ -126,6 +127,7 @@ func (m msgServer) Send(ctx context.Context, msg *types.MsgSend) (*types.MsgSend return &types.MsgSendResponse{}, nil } +``` The query service methods for the `x/nft` module are: