You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
245 B

  1. package eth
  2. import (
  3. "testing"
  4. "github.com/stretchr/testify/require"
  5. )
  6. var rollupClient *RollupClient
  7. func TestRollupConstants(t *testing.T) {
  8. if rollupClient != nil {
  9. _, err := rollupClient.RollupConstants()
  10. require.Nil(t, err)
  11. }
  12. }