Skip to content

Commit

Permalink
Fix supra_coin spec
Browse files Browse the repository at this point in the history
  • Loading branch information
axiongsupra committed Jun 27, 2024
1 parent c3f406b commit c14c516
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 97 deletions.
95 changes: 0 additions & 95 deletions aptos-move/framework/supra-framework/sources/aptos_coin.spec.move

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ spec supra_framework::supra_coin {

let addr = signer::address_of(supra_framework);
aborts_if addr != @supra_framework;
aborts_if !string::spec_internal_check_utf8(b"Aptos Coin");
aborts_if !string::spec_internal_check_utf8(b"APT");
aborts_if !string::spec_internal_check_utf8(b"Supra Coin");
aborts_if !string::spec_internal_check_utf8(b"SUP");
aborts_if exists<MintCapStore>(addr);
aborts_if exists<coin::CoinInfo<SupraCoin>>(addr);
aborts_if !exists<aggregator_factory::AggregatorFactory>(addr);
Expand Down

0 comments on commit c14c516

Please sign in to comment.