Skip to content

Commit

Permalink
Update comment on execute return value
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanfrey committed Jan 8, 2021
1 parent adcbf2f commit 5f8c246
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/proto.md
Original file line number Diff line number Diff line change
Expand Up @@ -915,7 +915,7 @@ MsgMigrateContractResponse returns contract migration result data.

| Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- |
| data | [bytes](#bytes) | | Data contains base64-encoded bytes returned from the wasm contract. |
| data | [bytes](#bytes) | | Data contains same raw bytes returned as data from the wasm contract. (May be empty) |



Expand Down
3 changes: 2 additions & 1 deletion x/wasm/internal/types/tx.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion x/wasm/internal/types/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ message MsgMigrateContract {

// MsgMigrateContractResponse returns contract migration result data.
message MsgMigrateContractResponse {
// Data contains base64-encoded bytes returned from the wasm contract.
// Data contains same raw bytes returned as data from the wasm contract.
// (May be empty)
bytes data = 1;
}

Expand Down

0 comments on commit 5f8c246

Please sign in to comment.