-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MOVE] Format all source files to be consistent (#4526)
- Loading branch information
Showing
59 changed files
with
343 additions
and
288 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
aptos-move/framework/aptos-framework/sources/account.spec.move
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
spec aptos_framework::account { | ||
spec create_signer { // TODO: temporary mockup. | ||
spec create_signer { | ||
// TODO: temporary mockup. | ||
pragma opaque; | ||
} | ||
} |
14 changes: 9 additions & 5 deletions
14
aptos-move/framework/aptos-framework/sources/aggregator/aggregator.spec.move
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,25 @@ | ||
spec aptos_framework::aggregator { | ||
spec module { | ||
pragma verify=false; | ||
pragma verify = false; | ||
} | ||
|
||
spec add { // TODO: temporary mockup. | ||
spec add { | ||
// TODO: temporary mockup. | ||
pragma opaque; | ||
} | ||
|
||
spec sub { // TODO: temporary mockup. | ||
spec sub { | ||
// TODO: temporary mockup. | ||
pragma opaque; | ||
} | ||
|
||
spec read { // TODO: temporary mockup. | ||
spec read { | ||
// TODO: temporary mockup. | ||
pragma opaque; | ||
} | ||
|
||
spec destroy { // TODO: temporary mockup. | ||
spec destroy { | ||
// TODO: temporary mockup. | ||
pragma opaque; | ||
} | ||
} |
5 changes: 3 additions & 2 deletions
5
aptos-move/framework/aptos-framework/sources/aggregator/aggregator_factory.spec.move
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
spec aptos_framework::aggregator_factory { | ||
spec module { | ||
pragma verify=false; | ||
pragma verify = false; | ||
} | ||
|
||
spec new_aggregator { // TODO: temporary mockup. | ||
spec new_aggregator { | ||
// TODO: temporary mockup. | ||
pragma opaque; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
aptos-move/framework/aptos-framework/sources/aggregator/optional_aggregator.spec.move
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
spec aptos_framework::optional_aggregator { | ||
spec module { | ||
pragma verify=false; | ||
pragma verify = false; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
aptos-move/framework/aptos-framework/sources/chain_status.spec.move
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
spec aptos_framework::code { | ||
spec module { | ||
pragma verify=false; | ||
pragma verify = false; | ||
} | ||
|
||
spec request_publish { // TODO: temporary mockup. | ||
spec request_publish { | ||
// TODO: temporary mockup. | ||
pragma opaque; | ||
} | ||
|
||
spec request_publish_with_allowed_deps { // TODO: temporary mockup. | ||
spec request_publish_with_allowed_deps { | ||
// TODO: temporary mockup. | ||
pragma opaque; | ||
} | ||
} |
Oops, something went wrong.