public LedgerClientBase(ILedgerTransport transport)
 {
     if (transport == null)
     {
         throw new ArgumentNullException("transport");
     }
     this._Transport = transport;
 }
Ejemplo n.º 2
0
 public LedgerClient(ILedgerTransport transport) : base(transport)
 {
 }
Ejemplo n.º 3
0
 public LedgerClientBase(ILedgerTransport transport)
 {
     if(transport == null)
         throw new ArgumentNullException("transport");
     this._Transport = transport;
 }
Ejemplo n.º 4
0
 public LedgerClient(ILedgerTransport transport)
     : base(transport)
 {
 }
Ejemplo n.º 5
0
 public LedgerClientBase(ILedgerTransport transport)
 {
     Transport = transport ?? throw new ArgumentNullException("transport");
 }
Ejemplo n.º 6
0
 public TezosLedgerClient(ILedgerTransport transport, KeyPath keyPath) : base(transport)
 {
     KeyPath = keyPath == null
         ? Utils.Serialize(new KeyPath("44'/1729'/0'/0'"))
         : Utils.Serialize(keyPath);
 }