Skip to content

Commit c64a251

Browse files
committed
Reset database versions to 1.
1 parent 8c9f1f7 commit c64a251

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ethereumkit/src/main/java/io/horizontalsystems/ethereumkit/api/storage/ApiDatabase.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import io.horizontalsystems.ethereumkit.api.models.LastBlockHeight
1010
import io.horizontalsystems.ethereumkit.models.EthereumTransaction
1111

1212

13-
@Database(entities = [EthereumBalance::class, LastBlockHeight::class, EthereumTransaction::class], version = 5, exportSchema = true)
13+
@Database(entities = [EthereumBalance::class, LastBlockHeight::class, EthereumTransaction::class], version = 1, exportSchema = true)
1414
@TypeConverters(RoomTypeConverters::class)
1515
abstract class ApiDatabase : RoomDatabase() {
1616

ethereumkit/src/main/java/io/horizontalsystems/ethereumkit/spv/core/room/SPVDatabase.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import io.horizontalsystems.ethereumkit.models.EthereumTransaction
1010
import io.horizontalsystems.ethereumkit.spv.models.AccountState
1111
import io.horizontalsystems.ethereumkit.spv.models.BlockHeader
1212

13-
@Database(entities = [BlockHeader::class, EthereumTransaction::class, AccountState::class], version = 6, exportSchema = true)
13+
@Database(entities = [BlockHeader::class, EthereumTransaction::class, AccountState::class], version = 1, exportSchema = true)
1414
@TypeConverters(RoomTypeConverters::class)
1515
abstract class SPVDatabase : RoomDatabase() {
1616

0 commit comments

Comments
 (0)