Skip to content

Commit e386fcc

Browse files
committedMay 3, 2023
add minor version to data source
1 parent 434dd53 commit e386fcc

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed
 

‎CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# v0.4.6
2+
- fix: add minor version to data source
13
# v0.4.5
24

35
- feat: add localhost to supported chains

‎cli.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import {
1414
} from './cli/mod.ts'
1515
import 'https://deno.land/std@0.179.0/dotenv/load.ts'
1616

17-
export const version = 'v0.4.5'
17+
export const version = 'v0.4.6'
1818

1919
const command = new Command()
2020
.name('arkiver')

‎src/arkiver/arkiver.ts

+1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ export class Arkiver extends EventTarget {
6969
rpcUrl: rpcUrl,
7070
blockSources: source.blockHandlers ?? [],
7171
noDb: this.mongoConnection === undefined,
72+
arkiveMinorVersion: this.arkiveData.deployment.minor_version,
7273
})
7374
await dataSource.run()
7475
this.sources.push(dataSource)

0 commit comments

Comments
 (0)