diff options
author | Meng-Ying Yang <garfield@dexon.org> | 2019-01-02 16:32:43 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 21:32:55 +0800 |
commit | 96b70e6992620e17a1a64663d87d565e09dc1308 (patch) | |
tree | 3181dded4381d769ef15048e1fcd42c4980c77fa /indexer/config.go | |
parent | b0a5c54715472109072d486f1f95c578efbd3038 (diff) | |
download | dexon-96b70e6992620e17a1a64663d87d565e09dc1308.tar.gz dexon-96b70e6992620e17a1a64663d87d565e09dc1308.tar.zst dexon-96b70e6992620e17a1a64663d87d565e09dc1308.zip |
Indexer plugin extension and custom flags support (#117)
* indexer: ReadOnlyBlockchain returns underlying engine
* indexer: plugin configs support custom flags
Diffstat (limited to 'indexer/config.go')
-rw-r--r-- | indexer/config.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indexer/config.go b/indexer/config.go index 3b626272a..396a23b66 100644 --- a/indexer/config.go +++ b/indexer/config.go @@ -11,6 +11,9 @@ type Config struct { // Plugin path for building components. Plugin string + + // PluginFlags for construction if needed. + PluginFlags string } // NewIndexerFromConfig initialize exporter according to given config. |