Esempio n. 1
0
 protected static extern void CallLevelDbBlockchainStore(IntPtr blockchain, block_type block, StoreBlockHandler handler);
Esempio n. 2
0
 public void Store(block_type block, StoreBlockHandler handler)
 {
     CallLevelDbBlockchainStore(NativeObject, block, handler);
 }
Esempio n. 3
0
 protected static extern void CallLevelDbBlockchainImport(IntPtr blockchain, block_type block, UInt32 height, ImportBlockHandler handler);
Esempio n. 4
0
 public void Import(block_type block, UInt32 height, ImportBlockHandler handler)
 {
     CallLevelDbBlockchainImport(NativeObject, block, height, handler);
 }