Comparing version 9.7.0 to 9.8.0
@@ -21,4 +21,5 @@ /// <reference types="node" /> | ||
storeDict: (src: Cell | null) => this; | ||
storeRefMaybe: (src: Cell | null) => this; | ||
endCell(): Cell; | ||
} | ||
export declare function beginCell(): Builder; |
@@ -94,2 +94,5 @@ "use strict"; | ||
}; | ||
this.storeRefMaybe = (src) => { | ||
return this.storeDict(src); | ||
}; | ||
} | ||
@@ -96,0 +99,0 @@ endCell() { |
@@ -199,2 +199,4 @@ "use strict"; | ||
async getTransactions(address, opts) { | ||
const inclusive = opts.inclusive; | ||
delete opts.inclusive; | ||
// Convert hash | ||
@@ -207,3 +209,3 @@ let hash = undefined; | ||
let limit = opts.limit; | ||
if (opts.hash && opts.lt && opts.inclusive !== true) { | ||
if (opts.hash && opts.lt && inclusive !== true) { | ||
limit++; | ||
@@ -217,3 +219,3 @@ } | ||
// Adjust result | ||
if (opts.hash && opts.lt && opts.inclusive !== true) { | ||
if (opts.hash && opts.lt && inclusive !== true) { | ||
res.shift(); | ||
@@ -220,0 +222,0 @@ return res; |
{ | ||
"name": "ton", | ||
"version": "9.7.0", | ||
"version": "9.8.0", | ||
"repository": "https://github.com/tonwhales/ton.git", | ||
@@ -5,0 +5,0 @@ "author": "Steve Korshakov <steve@korshakov.com>", |
324269
8413