Skip to content

Commit 2cf5b16

Browse files
authored
Merge branch 'master' into daan/test-assets_precompile_integration_test
2 parents faf195c + b9c2d34 commit 2cf5b16

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1000,12 +1000,14 @@ jobs:
10001000
});
10011001
console.log(`Issue created: ${issue.data.html_url}`);
10021002
1003-
submit-contract-sizes:
1003+
submit-contract-sizes-comment:
10041004
runs-on: ubuntu-latest
10051005
needs: [ci-image, process-contract-sizes, process-forced-abi-contract-sizes]
10061006
permissions:
10071007
pull-requests: write
1008-
if: github.ref != 'refs/heads/master'
1008+
# We don't submit the comment about contract size changes for CI runs on `master` or on tags.
1009+
# There is no PR associated to those.
1010+
if: github.ref != 'refs/heads/master' && !startsWith(github.ref, 'refs/tags/')
10091011
steps:
10101012
- name: Checkout
10111013
uses: actions/checkout@v5

crates/env/src/api.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -676,7 +676,7 @@ pub fn ecdsa_to_eth_address(pubkey: &[u8; 33], output: &mut [u8; 20]) -> Result<
676676
///
677677
/// - If sr25519 signature cannot be verified.
678678
///
679-
/// **WARNING**: this function is from the [unstable interface](https://github.com/paritytech/substrate/tree/master/frame/contracts#unstable-interfaces),
679+
/// **WARNING**: this function is from the [unstable interface](https://github.com/paritytech/polkadot-sdk/tree/master/substrate/frame/revive#unstable-interfaces)
680680
/// which is unsafe and normally is not available on production chains.
681681
#[cfg(feature = "unstable-hostfn")]
682682
pub fn sr25519_verify(

crates/env/src/backend.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ pub trait EnvBackend {
197197
///
198198
/// - If the signature verification failed.
199199
///
200-
/// **WARNING**: this function is from the [unstable interface](https://github.com/paritytech/substrate/tree/master/frame/contracts#unstable-interfaces),
200+
/// **WARNING**: this function is from the [unstable interface](https://github.com/paritytech/polkadot-sdk/tree/master/substrate/frame/revive#unstable-interfaces)
201201
/// which is unsafe and normally is not available on production chains.
202202
#[cfg(feature = "unstable-hostfn")]
203203
fn sr25519_verify(

crates/ink/src/env_access.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1030,8 +1030,7 @@ where
10301030
///
10311031
/// For more details visit: [`ink_env::sr25519_verify`]
10321032
///
1033-
/// todo
1034-
/// **WARNING**: this function is from the [unstable interface](https://github.com/paritytech/substrate/tree/master/frame/contracts#unstable-interfaces),
1033+
/// **WARNING**: this function is from the [unstable interface](https://github.com/paritytech/polkadot-sdk/tree/master/substrate/frame/revive#unstable-interfaces),
10351034
/// which is unsafe and normally is not available on production chains.
10361035
#[cfg(feature = "unstable-hostfn")]
10371036
pub fn sr25519_verify(

0 commit comments

Comments
 (0)