Albert

Results 3 comments of Albert

The chia-client version I currently use is 9.0.1, and I can’t get any return value using getNextAddress. After reading the source code, I feel that this method is caused by...

> No, this is an uncompressed public key

use: v3.3.0 public Mono getBlockTx(Long height, String userAgent) { UnsignedInteger ledgerIndex = UnsignedInteger.valueOf(height); LedgerSpecifier ledgerSpecifier = LedgerSpecifier.of(ledgerIndex); LedgerRequestParams params = LedgerRequestParams.builder() .ledgerSpecifier(ledgerSpecifier) .transactions(true) .build(); return Mono.fromCallable(() -> client.ledger(params)) .subscribeOn(Schedulers.boundedElastic()) .flatMap(result...