We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a96512c commit f5db8c3Copy full SHA for f5db8c3
src/main/java/prof7bit/bitcoin/wallettool/fileformats/WalletDatHandler.xtend
@@ -352,8 +352,8 @@ class WalletDat {
352
* as indicated by next_pgno and process all of their
353
* items until there is no next page anymore.
354
*/
355
- private def readAllLeafPages(BerkeleyDBLeafPage root) throws IOException {
356
- var page = root
+ private def readAllLeafPages(BerkeleyDBLeafPage first) throws IOException {
+ var page = first
357
while (page.hasNextPage){
358
readLeafPage(page)
359
page = page.nextLeafPage
0 commit comments