crypto: Remove unnecessary prefixes from amino route variable names (#2205)

* crypto: Remove unnecessary ed25519 and secp256k1 prefixes from amino routes.

* (squash this) add changelog

* (squash this) multisig amino fixes

* (squash this) fix build error
This commit is contained in:
Dev Ojha
2018-08-14 19:13:25 -04:00
committed by Ethan Buchman
parent e10666859f
commit 728d2ed266
6 changed files with 18 additions and 16 deletions
+2 -1
View File
@@ -30,7 +30,8 @@ func randCompactBitArray(bits int) (*CompactBitArray, []byte) {
func TestNewBitArrayNeverCrashesOnNegatives(t *testing.T) {
bitList := []int{-127, -128, -1 << 31}
for _, bits := range bitList {
_ = NewCompactBitArray(bits)
bA := NewCompactBitArray(bits)
require.Nil(t, bA)
}
}