Skip to content

Commit

Permalink
Use empty contract hash in test utils.
Browse files Browse the repository at this point in the history
  • Loading branch information
koxu1996 committed Jun 7, 2024
1 parent ca726c4 commit e5f9f8b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kairos-test-utils/src/kairos.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ impl Kairos {
let socket_addr = TcpListener::bind("0.0.0.0:0")?.local_addr()?;
let port = socket_addr.port().to_string();
let url = Url::parse(&format!("http://0.0.0.0:{}", port)).unwrap();
let casper_contract_hash = String::from("cafebabe");
let casper_contract_hash =
String::from("0000000000000000000000000000000000000000000000000000000000000000");
let config = kairos_server::config::ServerConfig {
socket_addr,
casper_rpc,
Expand Down

0 comments on commit e5f9f8b

Please sign in to comment.