Skip to content

Commit

Permalink
chore: check for 0.7.1 spec version
Browse files Browse the repository at this point in the history
  • Loading branch information
sergey-melnychuk committed Aug 27, 2024
1 parent 942459a commit 5c7b353
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/bin/beerus.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use beerus::config::Config;
use clap::Parser;
use tokio::sync::RwLock;

const RPC_SPEC_VERSION: &str = "0.6.0";
const RPC_SPEC_VERSION: &str = "0.7.1";

#[tokio::main]
async fn main() -> eyre::Result<()> {
Expand Down
2 changes: 1 addition & 1 deletion tests/rpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ async fn test_specVersion() -> Result<(), Error> {
let ctx = setup!();

let ret = ctx.client.specVersion().await?;
assert_eq!(ret, "0.6.0");
assert_eq!(ret, "0.7.1");
Ok(())
}

Expand Down

0 comments on commit 5c7b353

Please sign in to comment.