Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
all:

clone-injective-indexer:
git clone https://github.com/InjectiveLabs/injective-indexer.git -b v1.16.20 --depth 1 --single-branch
git clone https://github.com/InjectiveLabs/injective-indexer.git -b v1.16.54 --depth 1 --single-branch

clone-injective-core:
git clone https://github.com/InjectiveLabs/injective-core.git -b v1.16.0-beta.3 --depth 1 --single-branch
git clone https://github.com/InjectiveLabs/injective-core.git -b v1.16.0 --depth 1 --single-branch

copy-exchange-client: clone-injective-indexer
rm -rf exchange/*
Expand Down
1 change: 1 addition & 0 deletions chain/auction/types/tx.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 0 additions & 7 deletions chain/evm/types/key.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,6 @@ func StateKey(address common.Address, key []byte) []byte {
return append(AddressStoragePrefix(address), key...)
}

func ObjectGasUsedKey(txIndex int) []byte {
var key [1 + 8]byte
key[0] = prefixObjectGasUsed
binary.BigEndian.PutUint64(key[1:], uint64(txIndex))
return key[:]
}

func ObjectBloomKey(txIndex, msgIndex int) []byte {
var key [1 + 8 + 8]byte
key[0] = prefixObjectBloom
Expand Down
55 changes: 37 additions & 18 deletions chain/exchange/types/authz.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading