github.com/algorand/go-algorand-sdk@v1.24.0/client/v2/common/models/state_proof_sig_slot.go (about)

     1  package models
     2  
     3  // StateProofSigSlot defines a model for StateProofSigSlot.
     4  type StateProofSigSlot struct {
     5  	// LowerSigWeight (l) The total weight of signatures in the lower-numbered slots.
     6  	LowerSigWeight uint64 `json:"lower-sig-weight,omitempty"`
     7  
     8  	// Signature
     9  	Signature StateProofSignature `json:"signature,omitempty"`
    10  }