From c829ab63fca6a50c2a54ff2b88b76dff3ee662d3 Mon Sep 17 00:00:00 2001 From: turtleabsket Date: Thu, 25 Aug 2022 23:53:47 +0000 Subject: [PATCH] scaffold chain --- app/simulation_test.go | 1 + readme.md => sdk-readme.md | 0 x/cosmostest/genesis_test.go | 1 + 3 files changed, 2 insertions(+) rename readme.md => sdk-readme.md (100%) diff --git a/app/simulation_test.go b/app/simulation_test.go index 771c8ce..330102d 100644 --- a/app/simulation_test.go +++ b/app/simulation_test.go @@ -6,6 +6,7 @@ import ( "time" "cosmos-test/app" + "github.com/cosmos/cosmos-sdk/baseapp" "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/simapp" diff --git a/readme.md b/sdk-readme.md similarity index 100% rename from readme.md rename to sdk-readme.md diff --git a/x/cosmostest/genesis_test.go b/x/cosmostest/genesis_test.go index e6bff35..e5b74d4 100644 --- a/x/cosmostest/genesis_test.go +++ b/x/cosmostest/genesis_test.go @@ -7,6 +7,7 @@ import ( "cosmos-test/testutil/nullify" "cosmos-test/x/cosmostest" "cosmos-test/x/cosmostest/types" + "github.com/stretchr/testify/require" )