KeyBag, TransactionBag: Rename parameters pubkey to pubKey, pubkeyHash to pubKeyHash.

This commit is contained in:
Andreas Schildbach
2019-02-01 17:41:31 +01:00
parent 01daaf5815
commit 53908d8939
6 changed files with 27 additions and 27 deletions

View File

@@ -64,12 +64,12 @@ public class GenerateLowSTests {
final ECKey key = new ECKey(secureRandom);
final KeyBag bag = new KeyBag() {
@Override
public ECKey findKeyFromPubHash(byte[] pubkeyHash) {
public ECKey findKeyFromPubHash(byte[] pubKeyHash) {
return key;
}
@Override
public ECKey findKeyFromPubKey(byte[] pubkey) {
public ECKey findKeyFromPubKey(byte[] pubKey) {
return key;
}