class CryptoToolchain::DiffieHellman::Messages::PeerAddress
Attributes
channel[R]
initial[R]
initial?[R]
peer[R]
pubkey[RW]
Public Class Methods
new(peer: , channel: , initial: false)
click to toggle source
# File lib/crypto_toolchain/diffie_hellman/messages.rb, line 7 def initialize(peer: , channel: , initial: false) @peer = peer @channel = channel @initial = initial end