publicKey property

  1. @TagNumber(1)
List<int> get publicKey

publicKey is this node's public key (which also gives its node.ID)

  • may not need to be sent, as secure channel implies it has been sent.
  • then again, if we change / disable secure channel, may still want it.

Implementation

@$pb.TagNumber(1)
$core.List<$core.int> get publicKey => $_getN(0);
  1. @TagNumber(1)
set publicKey (List<int> v)

Implementation

@$pb.TagNumber(1)
set publicKey($core.List<$core.int> v) { $_setBytes(0, v); }