-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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: simd runs in-process testnet by default #9246
Changes from 32 commits
e1fd374
15803e3
21a0961
80704f2
082d317
837e58d
12c7283
60d3acf
858fb0a
052e19b
72ff9d5
ca21ad5
9f15d2c
a7954de
0918491
3766c4e
3bf532f
e4cae70
9763928
ccec784
42e68ea
5b0d334
2c286ef
606363b
42ab2fc
b9b53a9
d71fdb7
4587e1c
65c6410
2725ac7
aee829f
0b9aaf1
f2210bd
e479ff1
b86cdcf
4717b85
61ac80b
6892453
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,10 +48,12 @@ func (s *IntegrationTestSuite) SetupSuite() { | |
s.app = simapp.Setup(false) | ||
s.cfg = network.DefaultConfig() | ||
s.cfg.NumValidators = 1 | ||
s.network = network.New(s.T(), s.cfg) | ||
s.Require().NotNil(s.network) | ||
|
||
_, err := s.network.WaitForHeight(2) | ||
var err error | ||
s.network, err = network.New(s.T(), s.T().TempDir(), s.cfg) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could we add a changelog entry? This is an API breaking change. Not sure we should still merge this right now since we have a 0.43 beta freeze There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. updated changelog and makes sense to wait |
||
s.Require().NoError(err) | ||
|
||
_, err = s.network.WaitForHeight(2) | ||
s.Require().NoError(err) | ||
|
||
val0 := s.network.Validators[0] | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cc @aaronc should this be an API breaking change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
technically yes