112 code results in DigitalAssetCom/-deprecated-hlp-candidate

Java
server/core/src/main/java/org/hyperledger/core/bitcoin/BitcoinValidatorFactory.java
Showing the top three matches Last indexed Sep 22, 2016
14 package org.hyperledger.core.bitcoin;
15
16 import org.hyperledger.core.*;
17
18 public class BitcoinValidatorFactory extends ValidatorFactory<BitcoinValidatorConfig> {
19
20 private final BitcoinValidatorConfig config;
21
22 private final BitcoinValidator validator;
Java
client/api/src/main/java/org/hyperledger/account/color/BitcoinComparator.java
Showing the top three matches Last indexed Sep 22, 2016
20 /** A Color comparator that sorts BITCOIN last, and considers anything else equal */
21 public class BitcoinComparator implements Comparator<Color> {
22 public static final BitcoinComparator INSTANCE = new BitcoinComparator();
Java
server/core/src/test/java/org/hyperledger/server/DifficultyTest.java
Showing the top four matches Last indexed Sep 22, 2016
14 package org.hyperledger.server;
15
16 import org.hyperledger.core.bitcoin.BitcoinProductionValidatorConfig;
17 import org.junit.Test;
18
19 import java.math.BigInteger;
20
21 import static org.hyperledger.core.bitcoin.BitcoinDifficulty.getEncodedDifficulty;
Java
server/core/src/test/java/org/hyperledger/server/PerformanceTest.java
Showing the top three matches Last indexed Sep 22, 2016
14 package org.hyperledger.server;
15
16 import org.hyperledger.common.*;
17 import org.hyperledger.core.BitcoinValidatorConfig;
18 import org.hyperledger.core.ScriptValidator;
19 import org.hyperledger.core.bitcoin.JavaBitcoinScriptEvaluation;
Java
21 public class LibBitcoinConsensusJNATest {
22 // value is from from interpreter.h of the original bitcoin implementation
32 int nIn = 0;
33 long nInValue = 0;
34 LibBitcoinConsensusJNA.BitcoinConsensusErrorHolder error = new LibBitcoinConsensusJNA.BitcoinConsensusErrorHolder();
Java
server/core/src/main/java/org/hyperledger/core/UnitTestBitcoinValidatorFactory.java
Showing the top three matches Last indexed Sep 22, 2016
14 package org.hyperledger.core;
15
16 import org.hyperledger.common.HyperLedgerException;
17 import org.hyperledger.core.bitcoin.BitcoinProductionValidatorConfig;
18 import org.hyperledger.core.bitcoin.BitcoinValidatorFactory;
19
20 import java.util.List;
Java
server/native/src/main/java/org/hyperledger/nativelibs/LibBitcoinConsensusJNA.java
Showing the top two matches Last indexed Sep 22, 2016
14 package org.hyperledger.nativelibs;
15
16 import com.sun.jna.Library;
17
18 public class LibBitcoinConsensusJNA {
19
20 public interface Libconsensus extends Library {
26 public static final boolean verifyScript(byte[] scriptPubKey, byte[] txTo, long nInValue, int nIn, int flags, BitcoinConsensusErrorHolder errorHolder) {
27 int[] err = new int[1];
Java
server/core/src/main/java/org/hyperledger/core/conf/CoreAssembly.java
Showing the top five matches Last indexed Sep 22, 2016
18 import org.hyperledger.core.bitcoin.BitcoinBlockStore;
19 import org.hyperledger.core.bitcoin.BitcoinMiner;
20 import org.hyperledger.core.bitcoin.BitcoinValidatorFactory;
21 import org.hyperledger.core.bitcoin.MiningConfig;
Markdown
docs/elements.md
Showing the top match Last indexed Sep 22, 2016
5 [Elements](https://github.com/ElementsProject/elements). DA Bitcoin's implementations of these
6 features are not identical to Elements' implementations
Java
server/core/src/main/java/org/hyperledger/core/BitcoinValidatorConfig.java
Showing the top three matches Last indexed Sep 22, 2016
14 package org.hyperledger.core;
15
16 import org.hyperledger.common.Block;
17 import org.hyperledger.core.bitcoin.BitcoinDifficulty;
18
19 import java.math.BigInteger;
20
21 public interface BitcoinValidatorConfig extends ValidatorConfig {
22
23 enum ScriptEngine {