forked from cerc-io/laconicd-deprecated
fix value transfer (#341)
* debugging balance and gas * add prints * remove gas consumption in ante handler * cleanup * fix test
This commit is contained in:
@@ -293,7 +293,7 @@ func (suite *EvmTestSuite) TestQueryTxLogs() {
|
||||
|
||||
func (suite *EvmTestSuite) TestSendTransaction() {
|
||||
gasLimit := uint64(21000)
|
||||
gasPrice := big.NewInt(1)
|
||||
gasPrice := big.NewInt(0x55ae82600)
|
||||
|
||||
priv, err := crypto.GenerateKey()
|
||||
suite.Require().NoError(err, "failed to create key")
|
||||
|
||||
@@ -794,9 +794,9 @@ func (csdb *CommitStateDB) getStateObject(addr ethcmn.Address) (stateObject *sta
|
||||
}
|
||||
|
||||
// otherwise, attempt to fetch the account from the account mapper
|
||||
acc := csdb.accountKeeper.GetAccount(csdb.ctx, addr.Bytes())
|
||||
acc := csdb.accountKeeper.GetAccount(csdb.ctx, sdk.AccAddress(addr.Bytes()))
|
||||
if acc == nil {
|
||||
csdb.setError(fmt.Errorf("no account found for address: %X", addr.Bytes()))
|
||||
csdb.setError(fmt.Errorf("no account found for address: %s", addr.String()))
|
||||
return nil
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user