Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(marketplace): escrow sell order credits #878

Merged
merged 11 commits into from
Mar 15, 2022
Prev Previous commit
Next Next commit
fix: revert mock times
  • Loading branch information
technicallyty committed Mar 12, 2022
commit cb104de79710cea05aab27ea7effdd0cb1b23c43
2 changes: 1 addition & 1 deletion x/ecocredit/server/marketplace/sell_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func TestSell_Valid(t *testing.T) {
any := gomock.Any()
s.paramsKeeper.EXPECT().GetParamSet(any, any).Do(func(any interface{}, p *ecocredit.Params) {
p.CreditTypes = []*ecocredit.CreditType{&creditType}
}).AnyTimes()
}).Times(2)

balanceBefore, err := s.coreStore.BatchBalanceStore().Get(s.ctx, s.addr, 1)
assert.NilError(t, err)
Expand Down