-
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
lcd test cleanup #625
lcd test cleanup #625
Conversation
ba6ec0a
to
16ceca6
Compare
8c51cee
to
683663f
Compare
f88d43c
to
d807d32
Compare
b9cbfe9
to
6485213
Compare
Codecov Report
@@ Coverage Diff @@
## fabo/383-rest-server #625 +/- ##
========================================================
- Coverage 65.87% 63.13% -2.75%
========================================================
Files 8 38 +30
Lines 378 2094 +1716
========================================================
+ Hits 249 1322 +1073
- Misses 102 666 +564
- Partials 27 106 +79 |
@adrianbrink @rigelrozanski @faboweb see how I set up the Tendermint/LCD in process here. Could still use some love :) |
// into the app right away (#565) | ||
if chainID == "" { | ||
chainID = viper.GetString("chain-id") | ||
} | ||
signBytes := sdk.StdSignBytes(ctx.ChainID(), sequences, fee, msg) |
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.
you set chainID in line 50 but use ctx.ChainID() here again.
Amazing work. Thanks a lot. Sorry to see it was still that much todo. |
In the sendtx endpoint, is there a reason the address comes from the querystring and not the body? cosmos-sdk/x/bank/rest/sendtx.go Lines 20 to 36 in 6485213
|
NVM, it's in the URL path, that makes sense 👍 |
#624