diff --git a/channels/joinedChannel_test.go b/channels/joinedChannel_test.go index 0e1c812b4a306f425a0e61039ad78abe9b28e923..2da31d171d058fa5b8ab67165004abee4a04bd13 100644 --- a/channels/joinedChannel_test.go +++ b/channels/joinedChannel_test.go @@ -446,7 +446,7 @@ func Test_makeJoinedChannelKey_Consistency(t *testing.T) { // tests run quicker. func newTestChannel(name, description string, rng csprng.Source) ( *cryptoBroadcast.Channel, rsa.PrivateKey, error) { - c, pk, err := cryptoBroadcast.NewChannel(name, description, 1000, rng) + c, pk, err := cryptoBroadcast.NewChannelVariableKeyUnsafe(name, description, 1000, 512, rng) return c, pk, err }