types: update account pubkey JSON to string (#494)

* types: update account pubkey JSON to string

* changelog

* Update app/ethermint.go

* tests

* update

* fix secp256k1 public key formatting (#501)

* use Compress and Decompress pubkey for secp256k1 keys

* cleanup

* update estimate gas test

* comments

Co-authored-by: noot <36753753+noot@users.noreply.github.com>
This commit is contained in:
Federico Kunze
2020-09-07 10:04:50 -03:00
committed by GitHub
co-authored by noot
parent 820bf0f1aa
commit d3529dd959
7 changed files with 110 additions and 26 deletions
+1 -1
View File
@@ -758,7 +758,7 @@ func TestEth_EstimateGas(t *testing.T) {
err := json.Unmarshal(rpcRes.Result, &gas)
require.NoError(t, err, string(rpcRes.Result))
require.Equal(t, "0x1051d", gas)
require.Equal(t, "0xfd40", gas)
}
func TestEth_EstimateGas_ContractDeployment(t *testing.T) {