Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
manojkgorle committed Nov 25, 2024
1 parent e66e7bc commit 28a8c87
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
1 change: 0 additions & 1 deletion actions/consts.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ package actions
const (
TransferID uint8 = 0
MsgID uint8 = 1
ExitID uint8 = 2
AuctionID uint8 = 3
)

Expand Down
2 changes: 1 addition & 1 deletion actions/epoch_exit.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ type EpochExit struct {
}

func (*EpochExit) GetTypeID() uint8 {
return ExitID
return hactions.EpochExitID
}

func (e *EpochExit) StateKeys(actor codec.Address, _ ids.ID) state.Keys {

Check failure on line 36 in actions/epoch_exit.go

View workflow job for this annotation

GitHub Actions / Lint

unused-parameter: parameter 'actor' seems to be unused, consider removing or renaming it as _ (revive)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/AnomalyFi/nodekit-seq
go 1.21.12

require (
github.com/AnomalyFi/hypersdk v0.9.7-arcadia.4
github.com/AnomalyFi/hypersdk v0.9.7-arcadia.5
github.com/ava-labs/avalanche-network-runner v1.7.4-rc.0
github.com/ava-labs/avalanchego v1.11.10
github.com/ethereum/go-ethereum v1.13.14
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7
filippo.io/edwards25519 v1.0.0 h1:0wAIcmJUqRdI8IJ/3eGi5/HwXZWPujYXXlkrQogz0Ek=
filippo.io/edwards25519 v1.0.0/go.mod h1:N1IkdkCkiLB6tki+MYJoSx2JTY9NUlxZE7eHn5EwJns=
github.com/AndreasBriese/bbloom v0.0.0-20190306092124-e2d15f34fcf9/go.mod h1:bOvUY6CB00SOBii9/FifXqc0awNKxLFCL/+pkDPuyl8=
github.com/AnomalyFi/hypersdk v0.9.7-arcadia.4 h1:ttNCegwje/top+OVdzwil9zZFI4vMT532Jl1yooC34o=
github.com/AnomalyFi/hypersdk v0.9.7-arcadia.4/go.mod h1:4vquPvlEBs4i3uApYzE73Ghv/hB2GdFybf0m8fnU3DU=
github.com/AnomalyFi/hypersdk v0.9.7-arcadia.5 h1:wWmO2EL0scPPkShDWLVfTOcFWIXxSjz+oMsv0z4pblA=
github.com/AnomalyFi/hypersdk v0.9.7-arcadia.5/go.mod h1:4vquPvlEBs4i3uApYzE73Ghv/hB2GdFybf0m8fnU3DU=
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
github.com/BurntSushi/toml v1.3.2 h1:o7IhLm0Msx3BaB+n3Ag7L8EVlByGnpq14C4YWiu/gL8=
github.com/BurntSushi/toml v1.3.2/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ=
Expand Down
3 changes: 2 additions & 1 deletion scripts/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ UNLIMITED_USAGE=${UNLIMITED_USAGE:-false}
STORE_BLOCK_RESULTS_ON_DISK=${STORE_BLOCK_RESULTS_ON_DISK:-true}
ETHL1RPC=${ETHL1RPC:-http://localhost:8545}
ETHL1WS=${ETHL1WS:-ws://localhost:8546}
ARCADIA_URL=${ARCADIA_URL:-http://localhost:12345}
ADDRESS=${ADDRESS:-seq1qrzvk4zlwj9zsacqgtufx7zvapd3quufqpxk5rsdd4633m4wz2fdjlydh3t}
if [[ ${MODE} != "run" ]]; then
LOG_LEVEL=INFO
Expand Down Expand Up @@ -186,7 +187,7 @@ cat <<EOF > "${TMPDIR}"/seqvm.config
"storeBlockResultsOnDisk": ${STORE_BLOCK_RESULTS_ON_DISK},
"ethRPCAddr": "${ETHL1RPC}",
"ethWSAddr": "${ETHL1WS}",
"arcadiaURL": "http://localhost:12345/",
"arcadiaURL": "${ARCADIA_URL}",
"archiverConfig": {
"enabled": true,
"archiverType": "sqlite",
Expand Down

0 comments on commit 28a8c87

Please sign in to comment.