当前位置: 首页>>代码示例>>Java>>正文


Java FullPrunedBlockStore类代码示例

本文整理汇总了Java中com.google.bitcoin.store.FullPrunedBlockStore的典型用法代码示例。如果您正苦于以下问题:Java FullPrunedBlockStore类的具体用法?Java FullPrunedBlockStore怎么用?Java FullPrunedBlockStore使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


FullPrunedBlockStore类属于com.google.bitcoin.store包,在下文中一共展示了FullPrunedBlockStore类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: FullPrunedBlockChain

import com.google.bitcoin.store.FullPrunedBlockStore; //导入依赖的package包/类
/**
 * Constructs a BlockChain connected to the given list of wallets and a store.
 */
public FullPrunedBlockChain(NetworkParameters params, List<BlockChainListener> listeners,
                            FullPrunedBlockStore blockStore) throws BlockStoreException {
    super(params, listeners, blockStore);
    this.blockStore = blockStore;
    // Ignore upgrading for now
    this.chainHead = blockStore.getVerifiedChainHead();
}
 
开发者ID:HashEngineering,项目名称:megacoinj,代码行数:11,代码来源:FullPrunedBlockChain.java

示例2: createStore

import com.google.bitcoin.store.FullPrunedBlockStore; //导入依赖的package包/类
@Override
public FullPrunedBlockStore createStore(NetworkParameters params, int blockCount)
        throws BlockStoreException {
    if(useSchema) {
        return new PostgresFullPrunedBlockStore(params, blockCount, DB_HOSTNAME, DB_NAME, DB_USERNAME, DB_PASSWORD, DB_SCHEMA);
    }
    else {
        return new PostgresFullPrunedBlockStore(params, blockCount, DB_HOSTNAME, DB_NAME, DB_USERNAME, DB_PASSWORD);
    }
}
 
开发者ID:HashEngineering,项目名称:megacoinj,代码行数:11,代码来源:PostgresFullPrunedBlockChainTest.java

示例3: FullPrunedBlockChain

import com.google.bitcoin.store.FullPrunedBlockStore; //导入依赖的package包/类
/**
 * Constructs a BlockChain connected to the given wallet and store. To
 * obtain a {@link Wallet} you can construct one from scratch, or you can
 * deserialize a saved wallet from disk using
 * {@link Wallet#loadFromFile(java.io.File)}
 */
public FullPrunedBlockChain(NetworkParameters params, Wallet wallet,
		FullPrunedBlockStore blockStore) throws BlockStoreException {
	this(params, new ArrayList<BlockChainListener>(), blockStore);
	if (wallet != null)
		addWallet(wallet);
}
 
开发者ID:9cat,项目名称:templecoin-java,代码行数:13,代码来源:FullPrunedBlockChain.java

示例4: resetStore

import com.google.bitcoin.store.FullPrunedBlockStore; //导入依赖的package包/类
@Override
public void resetStore(FullPrunedBlockStore store) throws BlockStoreException {
    ((PostgresFullPrunedBlockStore)store).resetStore();
}
 
开发者ID:HashEngineering,项目名称:megacoinj,代码行数:5,代码来源:PostgresFullPrunedBlockChainTest.java

示例5: createStore

import com.google.bitcoin.store.FullPrunedBlockStore; //导入依赖的package包/类
@Override
public FullPrunedBlockStore createStore(NetworkParameters params, int blockCount) throws BlockStoreException {
    deleteFiles();
    return new H2FullPrunedBlockStore(params, "test", blockCount);
}
 
开发者ID:HashEngineering,项目名称:megacoinj,代码行数:6,代码来源:H2FullPrunedBlockChainTest.java

示例6: resetStore

import com.google.bitcoin.store.FullPrunedBlockStore; //导入依赖的package包/类
@Override
public void resetStore(FullPrunedBlockStore store) throws BlockStoreException {
    ((H2FullPrunedBlockStore)store).resetStore();
}
 
开发者ID:HashEngineering,项目名称:megacoinj,代码行数:5,代码来源:H2FullPrunedBlockChainTest.java

示例7: createStore

import com.google.bitcoin.store.FullPrunedBlockStore; //导入依赖的package包/类
public abstract FullPrunedBlockStore createStore(NetworkParameters params, int blockCount)
throws BlockStoreException;
 
开发者ID:HashEngineering,项目名称:megacoinj,代码行数:3,代码来源:AbstractFullPrunedBlockChainTest.java

示例8: createStore

import com.google.bitcoin.store.FullPrunedBlockStore; //导入依赖的package包/类
@Override
public FullPrunedBlockStore createStore(NetworkParameters params, int blockCount) throws BlockStoreException
{
    return new MemoryFullPrunedBlockStore(params, blockCount);
}
 
开发者ID:HashEngineering,项目名称:megacoinj,代码行数:6,代码来源:MemoryFullPrunedBlockChainTest.java

示例9: resetStore

import com.google.bitcoin.store.FullPrunedBlockStore; //导入依赖的package包/类
@Override
public void resetStore(FullPrunedBlockStore store) throws BlockStoreException
{
    //No-op for memory store, because it's not persistent
}
 
开发者ID:HashEngineering,项目名称:megacoinj,代码行数:6,代码来源:MemoryFullPrunedBlockChainTest.java

示例10: createStore

import com.google.bitcoin.store.FullPrunedBlockStore; //导入依赖的package包/类
@Override
public FullPrunedBlockStore createStore(NetworkParameters params, int blockCount)
        throws BlockStoreException {
    return new PostgresFullPrunedBlockStore(params, blockCount, DB_HOSTNAME, DB_NAME, DB_USERNAME, DB_PASSWORD);
}
 
开发者ID:coinspark,项目名称:sparkbit-bitcoinj,代码行数:6,代码来源:PostgresFullPrunedBlockChainTest.java


注:本文中的com.google.bitcoin.store.FullPrunedBlockStore类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。