-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change default network to Regtest
and default wallet db to Sqlite
#84
Comments
Regtest
Regtest
and default wallet to Sqlite
Regtest
and default wallet to Sqlite
Regtest
and default wallet db to Sqlite
I have added this under 0.6 milestone.. Would love to get this thing in before #92.. @notmandatory if there's concept ack on this, I can get this done quickly.. |
@rajarshimaitra If we make |
I don't think that's the case.. They can run As a user its easier for me to expect But I have also observed most of the time the default My initial thought was, as bdk-cli is mostly used as a dev and testing ground, maybe it makes sense to connect to regtest with as minimal config possible.. Having But its also a good question if we should add |
closing in favor of #109 and we can carry on the discussion there on general default value set.. |
As discussed in #65 (comment) we might want to change the default network value to
regtest
instead oftestnet
.Rationale: bdk-cli is mostly used in testing and demo purpose as an easy way to interact with BDK without write separate wallet codes. In such environment most of the testing I have found myself and others doing are on
regtest
. So it makes sense to makeregtest
the default option. And user can switch totestnet
with-n
flag. Andmainnet
is not allowed in bdk-cli anyway.Update: I also feel having
Sqlite
as default db would move us towards same direction.. Sqlite makes it really easy to real time observe database updates in terminal as devs test out different scenarios..Required changes: Mostly documentation updates to reflected the new cli usage. Code change is simple.
The text was updated successfully, but these errors were encountered: