mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-11-15 11:58:30 +00:00
KeyBag, TransactionBag: Rename parameters pubkey to pubKey, pubkeyHash to pubKeyHash.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user