Reset the daemon and GUI versions post 0.4 branch-off

This commit is contained in:
Antoine Poinsot 2023-04-10 14:40:53 +02:00
parent 46efdd3664
commit a076a83cba
No known key found for this signature in database
GPG Key ID: E13FC145CD3F4304
2 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ pub struct Version {
impl fmt::Display for Version {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}.{}.{}", self.major, self.minor, self.patch)
write!(f, "{}.{}.{}-dev", self.major, self.minor, self.patch)
}
}

View File

@ -20,7 +20,7 @@ from test_framework.utils import (
def test_getinfo(lianad):
res = lianad.rpc.getinfo()
assert res["version"] == "0.4.0"
assert res["version"] == "0.4.0-dev"
assert res["network"] == "regtest"
wait_for(lambda: lianad.rpc.getinfo()["block_height"] == 101)
res = lianad.rpc.getinfo()