(t *testing.T)
| 50 | } |
| 51 | |
| 52 | func Test01Multisig(t *testing.T) { |
| 53 | pubkeys := []ed25519.PublicKey{{}} |
| 54 | _, err := BlockMultiSigProgram(pubkeys, 0) |
| 55 | if err == nil { |
| 56 | t.Fatal("BlockMultiSigScript(1, 0) = success want error") |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | func TestParse00Multisig(t *testing.T) { |
| 61 | prog, err := BlockMultiSigProgram(nil, 0) |
nothing calls this directly
no test coverage detected