Skip to content
Snippets Groups Projects
Select Git revision
  • 6d2304df43d7d73c0ec1d5e69b8aa808c3666d6c
  • release default protected
  • XX-4719/announcementChannels
  • jonah/channelCodenames
  • master protected
  • XX-4601/HavenInvites
  • sihSize
  • project/HavenNotifications
  • hotfix/base8KeySizes
  • Anne/Project/DM
  • XX-4004_ownership_vector_test
  • XX-3566_constant_time_comparison
  • XX-4132-upgrade-channel-keying
  • XX-4133-rsa-to-private
  • XX-3958/ConnectionCLI
  • xx-3893/asymmetric
  • xx-3891/symmetric-integration
  • hotfix/groupChat
  • XX-3770/UpdateExternalDeps
  • dev
  • waitingRoundsRewrite
  • v0.0.9
  • v0.0.8
  • v0.0.7
  • v0.0.6
  • v0.0.5
  • v0.0.4
  • v0.0.3
  • v0.0.2
  • v0.0.1
30 results

tagFingerprint.go

Blame
  • roundList.go 296 B
    package bindings
    
    import "gitlab.com/xx_network/primitives/id"
    
    type roundList struct {
    	list []id.Round
    }
    
    // RoundList contains a list of contacts
    type RoundList interface {
    	// Len returns the number of contacts in the list
    	Len() int
    	// Get returns the round ID at index i
    	Get(i int) int
    }