Skip to content

Commit ec80ce1

Browse files
committed
fix
1 parent cf84d78 commit ec80ce1

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

packages/rs-drive/src/drive/contract/insert/add_new_keywords/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ impl Drive {
4646
),
4747
version => Err(Error::Drive(DriveError::UnknownVersionMismatch {
4848
method: "add_new_keywords".to_string(),
49-
known_versions: vec![0],
49+
known_versions: vec![0, 1],
5050
received: version,
5151
})),
5252
}
@@ -86,7 +86,7 @@ impl Drive {
8686
),
8787
version => Err(Error::Drive(DriveError::UnknownVersionMismatch {
8888
method: "add_new_keywords_add_to_operations".to_string(),
89-
known_versions: vec![0],
89+
known_versions: vec![0, 1],
9090
received: version,
9191
})),
9292
}
@@ -126,7 +126,7 @@ impl Drive {
126126
),
127127
version => Err(Error::Drive(DriveError::UnknownVersionMismatch {
128128
method: "add_new_keywords_operations".to_string(),
129-
known_versions: vec![0],
129+
known_versions: vec![0, 1],
130130
received: version,
131131
})),
132132
}

packages/rs-drive/tests/deterministic_root_hash.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,8 +282,6 @@ mod tests {
282282
load_system_data_contract(SystemDataContract::Dashpay, platform_version)
283283
.expect("should load dpns contract");
284284

285-
println!("Dashpay contract: {:?}", dashpay_contract);
286-
287285
drive
288286
.apply_contract(
289287
&dashpay_contract,

0 commit comments

Comments
 (0)