File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
src/drive/contract/insert/add_new_keywords Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff 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,
You can’t perform that action at this time.
0 commit comments