pushPrivateKey method

void pushPrivateKey(
  1. String s
)

Append a private key */

Implementation

void pushPrivateKey(String s) {
  var key = numeric.stringToPrivateKey(s);
  push([key.type.index]);
  pushArray(key.data);
}