Skip to content

Commit f5db8c3

Browse files
committed
change misleading variable name
1 parent a96512c commit f5db8c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/prof7bit/bitcoin/wallettool/fileformats/WalletDatHandler.xtend

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -352,8 +352,8 @@ class WalletDat {
352352
* as indicated by next_pgno and process all of their
353353
* items until there is no next page anymore.
354354
*/
355-
private def readAllLeafPages(BerkeleyDBLeafPage root) throws IOException {
356-
var page = root
355+
private def readAllLeafPages(BerkeleyDBLeafPage first) throws IOException {
356+
var page = first
357357
while (page.hasNextPage){
358358
readLeafPage(page)
359359
page = page.nextLeafPage

0 commit comments

Comments
 (0)