TestCoinSend: test success case when setting gas by hand

This commit is contained in:
Alessio Treglia 2018-08-24 07:37:41 +01:00
parent 7e9ceb452d
commit 2dea46779c
No known key found for this signature in database
GPG Key ID: E8A48AE5311D765A
1 changed files with 4 additions and 0 deletions

View File

@ -267,6 +267,10 @@ func TestCoinSend(t *testing.T) {
// test failure with too little gas
res, body, _ = doSendWithGas(t, port, seed, name, password, addr, 100)
require.Equal(t, http.StatusInternalServerError, res.StatusCode, body)
// test success with just enough gas
res, body, _ = doSendWithGas(t, port, seed, name, password, addr, 3000)
require.Equal(t, http.StatusOK, res.StatusCode, body)
}
func TestIBCTransfer(t *testing.T) {