Skip to content
This repository has been archived by the owner on Nov 18, 2022. It is now read-only.

Commit

Permalink
chore: update godwoken and godwoken-scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
TheWaWaR committed Jun 23, 2021
1 parent 42ae1a8 commit a104abe
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -24,8 +24,8 @@ SECP256K1_SRC := $(SECP_DIR)/src/ecmult_static_pre_context.h

MOLC := moleculec
MOLC_VERSION := 0.6.1
PROTOCOL_VERSION := c3165a6a2663c89cc81d821024fd71fe9cd0c49c
PROTOCOL_SCHEMA_URL := https://raw.githubusercontent.com/thewawar/godwoken/${PROTOCOL_VERSION}/crates/types/schemas
PROTOCOL_VERSION := 888f0e9fc02adf0a52592dda1ddf283a596a7459
PROTOCOL_SCHEMA_URL := https://raw.githubusercontent.com/nervosnetwork/godwoken/${PROTOCOL_VERSION}/crates/types/schemas

ALL_OBJS := build/evmone.o build/baseline.o build/analysis.o build/instruction_metrics.o build/instruction_names.o build/execution.o build/instructions.o build/instructions_calls.o \
build/keccak.o build/keccakf800.o \
Expand Down
2 changes: 1 addition & 1 deletion deps/godwoken-scripts
4 changes: 2 additions & 2 deletions devtools/ci/integration-test.sh
Expand Up @@ -13,10 +13,10 @@ if [ -d "$GODWOKEN_DIR" ]
then
echo "godwoken project already exists"
else
git clone https://github.com/thewawar/godwoken.git $GODWOKEN_DIR
git clone https://github.com/nervosnetwork/godwoken.git $GODWOKEN_DIR
fi
cd $GODWOKEN_DIR
git checkout c3165a6a2663c89cc81d821024fd71fe9cd0c49c
git checkout v0.4.0-rc1
git submodule update --init --recursive
cd godwoken-scripts/c
make all-via-docker
Expand Down
4 changes: 2 additions & 2 deletions polyjuice-tests/src/helper.rs
Expand Up @@ -254,8 +254,8 @@ pub fn eth_address_to_account_id(state: &DummyState, data: &[u8]) -> Result<u32,
return Ok(0);
}
let account_script_hash = state
.get_script_hash_by_prefix(data)
.ok_or_else(|| format!("can not get script hash by prefix: {:?}", data))?;
.get_script_hash_by_short_address(data)
.ok_or_else(|| format!("can not get script hash by short address: {:?}", data))?;
state
.get_account_id_by_script_hash(&account_script_hash)
.map_err(|err| err.to_string())?
Expand Down

0 comments on commit a104abe

Please sign in to comment.