Skip to content

Commit

Permalink
Add state.md
Browse files Browse the repository at this point in the history
  • Loading branch information
cwgoes committed Nov 22, 2018
1 parent 87954ab commit ad7c0e1
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
11 changes: 9 additions & 2 deletions docs/spec/bank/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,12 @@ This module will be used in the Cosmos Hub.
## Contents

1. **[State](state.md)**
2. **[Keepers](keepers.md)**
3. **[Transactions](transactions.md)**
1. **[Keepers](keepers.md)**
1. [BaseKeeper](keepers.md#basekeeper)
1. [SendKeeper](keepers.md#sendkeeper)
1. [ViewKeeper](keepers.md#viewkeeper)
1. **[Transactions](transactions.md)**
1. [Common](transactions.md#common)
1. [Input](transactions.md#input)
1. [Output](transactions.md#output)
1. [MsgSend](transactions.md#msgsend)
2 changes: 2 additions & 0 deletions docs/spec/bank/state.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
## State

Presently, the bank module has no inherent state — it simply reads and writes accounts using the `AccountKeeper` from the `auth` module.
4 changes: 3 additions & 1 deletion docs/spec/bank/transactions.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Transactions

### MsgSend
### Common

#### Input

Expand All @@ -20,6 +20,8 @@ type Output struct {
}
```

### MsgSend

```golang
type MsgSend struct {
Inputs []Input
Expand Down

0 comments on commit ad7c0e1

Please sign in to comment.