本文整理汇总了Java中org.bitcoinj.utils.BriefLogFormatter.initWithSilentBitcoinJ方法的典型用法代码示例。如果您正苦于以下问题:Java BriefLogFormatter.initWithSilentBitcoinJ方法的具体用法?Java BriefLogFormatter.initWithSilentBitcoinJ怎么用?Java BriefLogFormatter.initWithSilentBitcoinJ使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.bitcoinj.utils.BriefLogFormatter
的用法示例。
在下文中一共展示了BriefLogFormatter.initWithSilentBitcoinJ方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: Bitcoin
import org.bitcoinj.utils.BriefLogFormatter; //导入方法依赖的package包/类
private Bitcoin() {
BriefLogFormatter.initWithSilentBitcoinJ();
ch.qos.logback.classic.Logger rootLogger = (ch.qos.logback.classic.Logger)LoggerFactory.getLogger(ch.qos.logback.classic.Logger.ROOT_LOGGER_NAME);
rootLogger.setLevel(Level.toLevel("info"));
// Context.enableStrictMode();
final NetworkParameters params = TestNet3Params.get();
context = new Context(params);
Context.propagate(context);
// read system property to check if broken wallet shall be recovered from backup automatically
automaticallyRecoverBrokenWallet = System.getProperty("automaticallyRecoverBrokenWallet").equalsIgnoreCase("true");
// prepare (unused) random seed to save time when constructing coupon wallets for invoices
byte[] seed = new byte[DeterministicSeed.DEFAULT_SEED_ENTROPY_BITS/8];
List<String> mnemonic = new ArrayList<>(0);
couponRandomSeed = new DeterministicSeed(seed, mnemonic, MnemonicCode.BIP39_STANDARDISATION_TIME_SECS);
}
示例2: main
import org.bitcoinj.utils.BriefLogFormatter; //导入方法依赖的package包/类
public static void main(String[] args) throws Exception {
BriefLogFormatter.initWithSilentBitcoinJ();
if (args.length == 0) {
System.err.println("Specify the fee level to test in satoshis as the first argument.");
return;
}
Coin feeToTest = Coin.valueOf(Long.parseLong(args[0]));
System.out.println("Fee to test is " + feeToTest.toFriendlyString());
kit = new WalletAppKit(PARAMS, new File("."), "testfeelevel");
kit.startAsync();
kit.awaitRunning();
try {
go(feeToTest, NUM_OUTPUTS);
} finally {
kit.stopAsync();
kit.awaitTerminated();
}
}
示例3: main
import org.bitcoinj.utils.BriefLogFormatter; //导入方法依赖的package包/类
public static void main(String[] args) throws Exception {
BriefLogFormatter.initWithSilentBitcoinJ();
if (args.length == 0) {
System.err.println("Specify the fee rate to test in satoshis/kB as the first argument.");
return;
}
Coin feeRateToTest = Coin.valueOf(Long.parseLong(args[0]));
System.out.println("Fee rate to test is " + feeRateToTest.toFriendlyString() + "/kB");
kit = new WalletAppKit(PARAMS, new File("."), "testfeelevel");
kit.startAsync();
kit.awaitRunning();
try {
go(feeRateToTest, NUM_OUTPUTS);
} finally {
kit.stopAsync();
kit.awaitTerminated();
}
}
示例4: main
import org.bitcoinj.utils.BriefLogFormatter; //导入方法依赖的package包/类
public static void main(String[] args) {
BriefLogFormatter.initWithSilentBitcoinJ();
ch.qos.logback.classic.Logger rootLogger = (ch.qos.logback.classic.Logger)
LoggerFactory.getLogger(ch.qos.logback.classic.Logger.ROOT_LOGGER_NAME);
rootLogger.setLevel(Level.OFF);
boolean generate = false;
switch (args[0]) {
case "generate":
generate = true;
break;
default:
System.out.println("Usage:\n generate: returns a new wallet " +
"seed and creation time");
break;
}
if(generate){
final NetworkParameters params = TestNet3Params.get();
Context context = new Context(params);
Wallet wallet = new Wallet(context);
DeterministicSeed seed = wallet.getKeyChainSeed();
String seedString = seed.getMnemonicCode().toString();
System.out.println(seedString.substring(1,seedString.length()-1));
System.out.println(seed.getCreationTimeSeconds());
}
}