@@ -150,7 +150,7 @@ public async Task SetupNetwork(string lndImage = "lightninglabs/lnd", string lnd
150150 RemoteName = "bob"
151151 }
152152 ] , imageName : lndImage , tagName : lndTag , pullImage : false , acceptKeysend : true , mapTotmp : false ,
153- postgresDSN : _dbType == "postgres" ? PostgresFixture . LNDConnectionStrings [ "alice" ] : null , lndkSupport : false , nativeSql : _dbType == "postgres ", storeFinalHtlcResolutions : true ) ;
153+ postgresDSN : _dbType == "postgres" ? PostgresFixture . LNDConnectionStrings [ "alice" ] : null , lndkSupport : false , nativeSql : _dbType != "boltdb ", storeFinalHtlcResolutions : true ) ;
154154
155155 Builder . AddPolarLNDNode ( "bob" ,
156156 [
@@ -161,7 +161,7 @@ public async Task SetupNetwork(string lndImage = "lightninglabs/lnd", string lnd
161161 RemoteName = "alice"
162162 }
163163 ] , imageName : lndImage , tagName : lndTag , pullImage : false , acceptKeysend : true , mapTotmp : false ,
164- postgresDSN : _dbType == "postgres" ? PostgresFixture . LNDConnectionStrings [ "bob" ] : null , lndkSupport : false , nativeSql : _dbType == "postgres ") ;
164+ postgresDSN : _dbType == "postgres" ? PostgresFixture . LNDConnectionStrings [ "bob" ] : null , lndkSupport : false , nativeSql : _dbType != "boltdb ") ;
165165
166166 Builder . AddPolarLNDNode ( "carol" ,
167167 [
@@ -190,7 +190,7 @@ public async Task SetupNetwork(string lndImage = "lightninglabs/lnd", string lnd
190190 RemoteName = "bob"
191191 }
192192 ] , imageName : lndImage , tagName : lndTag , pullImage : false , acceptKeysend : true , mapTotmp : false ,
193- postgresDSN : _dbType == "postgres" ? PostgresFixture . LNDConnectionStrings [ "carol" ] : null , lndkSupport : false , nativeSql : _dbType == "postgres ") ;
193+ postgresDSN : _dbType == "postgres" ? PostgresFixture . LNDConnectionStrings [ "carol" ] : null , lndkSupport : false , nativeSql : _dbType != "boltdb ") ;
194194
195195 await Builder . Build ( lndRoot : lndRoot ) ;
196196
0 commit comments