(t *testing.T)
| 40 | } |
| 41 | |
| 42 | func Test00Multisig(t *testing.T) { |
| 43 | prog, err := BlockMultiSigProgram(nil, 0) |
| 44 | if err != nil { |
| 45 | t.Fatal(err) |
| 46 | } |
| 47 | if len(prog) < 1 { |
| 48 | t.Fatal("BlockMultiSigScript(0, 0) = {} want script") |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | func Test01Multisig(t *testing.T) { |
| 53 | pubkeys := []ed25519.PublicKey{{}} |
nothing calls this directly
no test coverage detected