예제 #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();