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


Java Transaction.isFinal方法代码示例

本文整理汇总了Java中com.google.bitcoin.core.Transaction.isFinal方法的典型用法代码示例。如果您正苦于以下问题:Java Transaction.isFinal方法的具体用法?Java Transaction.isFinal怎么用?Java Transaction.isFinal使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.google.bitcoin.core.Transaction的用法示例。


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

示例1: analyzeIsFinal

import com.google.bitcoin.core.Transaction; //导入方法依赖的package包/类
private Result analyzeIsFinal() {
    // Transactions we create ourselves are, by definition, not at risk of double spending against us.
    if (tx.getConfidence().getSource() == TransactionConfidence.Source.SELF)
        return Result.OK;

    final int height = wallet.getLastBlockSeenHeight();
    final long time = wallet.getLastBlockSeenTimeSecs();
    // If the transaction has a lock time specified in blocks, we consider that if the tx would become final in the
    // next block it is not risky (as it would confirm normally).
    final int adjustedHeight = height + 1;

    if (!tx.isFinal(adjustedHeight, time)) {
        nonFinal = tx;
        return Result.NON_FINAL;
    }
    for (Transaction dep : dependencies) {
        if (!dep.isFinal(adjustedHeight, time)) {
            nonFinal = dep;
            return Result.NON_FINAL;
        }
    }
    return Result.OK;
}
 
开发者ID:HashEngineering,项目名称:megacoinj,代码行数:24,代码来源:DefaultRiskAnalysis.java

示例2: analyze

import com.google.bitcoin.core.Transaction; //导入方法依赖的package包/类
@Override
public Result analyze() {
    checkState(!analyzed);
    analyzed = true;

    // Transactions we create ourselves are, by definition, not at risk of double spending against us.
    if (tx.getConfidence().getSource() == TransactionConfidence.Source.SELF)
        return Result.OK;

    final int height = wallet.getLastBlockSeenHeight();
    final long time = wallet.getLastBlockSeenTimeSecs();
    // If the transaction has a lock time specified in blocks, we consider that if the tx would become final in the
    // next block it is not risky (as it would confirm normally).
    final int adjustedHeight = height + 1;

    if (!tx.isFinal(adjustedHeight, time)) {
        nonFinal = tx;
        return Result.NON_FINAL;
    }
    for (Transaction dep : dependencies) {
        if (!dep.isFinal(adjustedHeight, time)) {
            nonFinal = dep;
            return Result.NON_FINAL;
        }
    }
    return Result.OK;
}
 
开发者ID:9cat,项目名称:templecoin-java,代码行数:28,代码来源:DefaultRiskAnalysis.java


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