fix code formatting

This commit is contained in:
Haifeng Xi 2021-07-01 16:15:59 +08:00 committed by GitHub
parent 843f79c5ae
commit c98ce3abdb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -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: