getSize method

int getSize()

Implementation

int getSize() {
  int size = 0;
  for (final sb in signingBlocks) {
    size += sb.getSize() + 12; // Uint64 should + 32
  }
  return size;
}