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
282 B

  1. package common
  2. import (
  3. "encoding/json"
  4. "math/big"
  5. "testing"
  6. "github.com/stretchr/testify/require"
  7. )
  8. func TestZKInputs(t *testing.T) {
  9. zki := NewZKInputs(100, 16, 512, 24, 32, big.NewInt(1))
  10. _, err := json.Marshal(zki)
  11. require.NoError(t, err)
  12. // fmt.Println(string(s))
  13. }