Skip to content

Commit

Permalink
Merge pull request #414 from Setheum-Labs/JBA-Khalifa-patch-9
Browse files Browse the repository at this point in the history
ptch
  • Loading branch information
balqaasem authored Jul 24, 2021
2 parents f62834f + 925c00a commit 2d520eb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib-serml/evm/evm-accounts/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ impl<T: Config> Pallet<T> {
// Constructs the message that Ethereum RPC's `personal_sign` and `eth_sign`
// would sign.
pub fn ethereum_signable_message(what: &[u8], extra: &[u8]) -> Vec<u8> {
let prefix = b"acala evm:";
let prefix = b"setheum evm:";
let mut l = prefix.len() + what.len() + extra.len();
let mut rev = Vec::new();
while l > 0 {
Expand Down
2 changes: 1 addition & 1 deletion node/service/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -825,7 +825,7 @@ fn inner_newrome_dev(config: Configuration, instant_sealing: bool) -> Result<Tas
let transaction_pool = transaction_pool.clone();

Box::new(move |deny_unsafe, _| -> acala_rpc::RpcExtension {
let deps = acala_rpc::FullDeps {
let deps = setheum_rpc::FullDeps {
client: client.clone(),
pool: transaction_pool.clone(),
deny_unsafe,
Expand Down
2 changes: 1 addition & 1 deletion scripts/docker-hub-publish-dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -e

VERSION=$(git rev-parse --short HEAD)
NODE_NAME=acala/mandala-node
NODE_NAME=setheum/mandala-node
BUILD_ARGS="--features with-mandala-runtime --features=with-sevm"

docker build -f scripts/Dockerfile . -t $NODE_NAME:$VERSION --no-cache --build-arg GIT_COMMIT=${VERSION} --build-arg BUILD_ARGS="$BUILD_ARGS"
Expand Down

0 comments on commit 2d520eb

Please sign in to comment.