Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: deprecate multiple encoding version support for configurable constants #2040

Merged
merged 10 commits into from
Apr 11, 2024
Prev Previous commit
Next Next commit
chore: forc format
  • Loading branch information
danielbate committed Apr 11, 2024
commit b3b9384d71b59a8be927720a67b61961bca7a31d
Original file line number Diff line number Diff line change
@@ -6,7 +6,6 @@ use std::option::Option;
use std::bytes::Bytes;
use std::vec::Vec;


enum NativeEnum {
Checked: (),
Pending: (),
@@ -94,7 +93,7 @@ impl MyContract for Contract {
let param_str: str = from_str_array(param.3);
let conf_str: str = from_str_array(CONF.3);
assert_eq(param_str, conf_str);

CONF
}
}
Loading