Skip to content

Commit

Permalink
Use camelCase
Browse files Browse the repository at this point in the history
  • Loading branch information
ManfredKarrer committed Feb 14, 2018
1 parent 14035e5 commit ff62954
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public Coin getRequestedBsq() {
public Address getIssuanceAddress (BsqWalletService bsqWalletService) {
checkNotNull(payload);
// Remove leading 'B'
String underlying_btc_address = payload.getBsqAddress().substring(1, payload.getBsqAddress().length());
return Address.fromBase58(bsqWalletService.getParams(), underlying_btc_address);
String underlyingBtcAddress = payload.getBsqAddress().substring(1, payload.getBsqAddress().length());
return Address.fromBase58(bsqWalletService.getParams(), underlyingBtcAddress);
}
}

0 comments on commit ff62954

Please sign in to comment.