示例#1
0
 public static void AssertBytesEqual(TxId expected, TxId actual)
 {
     AssertBytesEqual(expected.ToByteArray(), actual.ToByteArray());
 }
示例#2
0
 public abstract bool DeleteTransaction(TxId txid);
示例#3
0
 private string TxFileId(TxId txid)
 {
     return($"{TxIdPrefix}{txid.ToHex()}");
 }
示例#4
0
 public abstract Transaction <T> GetTransaction <T>(TxId txid)
     where T : IAction, new();