Skip to content

Commit 72267c7

Browse files
committed
Fix rewind
1 parent 98a8807 commit 72267c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Stratis.Bitcoin/Base/BaseFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ public override async Task InitializeAsync()
237237
// Ensure that we don't try to rewind further than the coin view is capable of doing.
238238
var utxoSet = ((dynamic)this.consensusRules).UtxoSet;
239239
var coinDatabase = ((dynamic)utxoSet).ICoindb;
240-
((dynamic)coinDatabase).Initialize(initializedAt);
240+
((dynamic)coinDatabase).Initialize(false);
241241
int minRewindHeight = ((dynamic)coinDatabase).GetMinRewindHeight();
242242
((dynamic)coinDatabase).Dispose();
243243

0 commit comments

Comments
 (0)