Skip to content

Commit

Permalink
feat: create testing smart contracts
Browse files Browse the repository at this point in the history
  • Loading branch information
emidev98 committed Nov 4, 2023
1 parent a3bff65 commit a4aec49
Show file tree
Hide file tree
Showing 16 changed files with 975 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,20 @@ release/
.idea/
.vscode/
.DS_Store

# Build results
target
schema

# Cargo+Git helper file (https://github.com/rust-lang/cargo/blob/0.44.1/src/cargo/sources/git/utils.rs#L320-L327)
.cargo-ok

# Text file backups
**/*.rs.bk

# macOS
.DS_Store

# IDEs
*.iml
.idea
1 change: 1 addition & 0 deletions testutil/keeper/cosmwasmlifecycle.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ func LifecycleHooksKeeper(t testing.TB) (*keeper.Keeper, sdk.Context) {
storeKey,
wasmKeeper,
bankKeeper,
authorityAddr,
)

ctx := sdk.NewContext(stateStore, tmproto.Header{}, false, log.NewNopLogger())
Expand Down
11 changes: 11 additions & 0 deletions workspace/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
root = true

[*]
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.rs]
indent_size = 4
Loading

0 comments on commit a4aec49

Please sign in to comment.