diff options
author | Gustav Simonsson <gustav.simonsson@gmail.com> | 2015-07-06 19:56:56 +0800 |
---|---|---|
committer | Gustav Simonsson <gustav.simonsson@gmail.com> | 2015-07-06 19:56:56 +0800 |
commit | b7e8d954ef7f81d5b86e4287d99534c5528c2bfa (patch) | |
tree | 9f096c443a43360be26fcfada48c794a4d41259d /tests/block_test.go | |
parent | 457a3c8f7691314b30909787b952fccebf7f38df (diff) | |
download | go-tangerine-b7e8d954ef7f81d5b86e4287d99534c5528c2bfa.tar.gz go-tangerine-b7e8d954ef7f81d5b86e4287d99534c5528c2bfa.tar.zst go-tangerine-b7e8d954ef7f81d5b86e4287d99534c5528c2bfa.zip |
Add TestBcGasPricer, comments and unskip tests
Diffstat (limited to 'tests/block_test.go')
-rw-r--r-- | tests/block_test.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/block_test.go b/tests/block_test.go index bdf983786..b014fb52e 100644 --- a/tests/block_test.go +++ b/tests/block_test.go @@ -71,3 +71,10 @@ func TestBcWallet(t *testing.T) { t.Fatal(err) } } + +func TestBcGasPricer(t *testing.T) { + err := RunBlockTest(filepath.Join(blockTestDir, "bcGasPricerTest.json"), BlockSkipTests) + if err != nil { + t.Fatal(err) + } +} |