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: 0 additions & 4 deletions evm-events-calls/generate_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -203,10 +203,6 @@ func Test_BaycTriggers(t *testing.T) {
os.MkdirAll(outDir, 0755)
}

func Test_USDC(t *testing.T) {
testGenerateProject(t, "./testdata/usdc.state.json", "testoutput/usdc")
}

func Test_UniswapFactoryDynamic(t *testing.T) {
testGenerateProject(t, "./testdata/uniswap_v3_dynamic_datasources.state.json", "testoutput/uniswap_v3_dynamic")
}
Expand Down
2 changes: 0 additions & 2 deletions mantra-hello-world/convo_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ func TestConvoNextStep(t *testing.T) {

assert.Equal(t, codegen.AskProjectName{}, next())
p.Name = "my-proj"

assert.Equal(t, codegen.AskChainName{}, next())
p.ChainName = "mantra-mainnet"

res := p.Generate()
Expand Down
2 changes: 1 addition & 1 deletion sol-anchor/templates/src/idl/mod.rs.gotmpl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pub mod idl {
use anchor_lang::declare_program;
use anchor_lang::{self, declare_program};

declare_program!(program);
}
2 changes: 1 addition & 1 deletion tests/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ghcr.io/streamingfast/substreams:develop AS substreams
FROM bufbuild/buf AS buf

FROM rust:1.88
FROM rust:1.89

WORKDIR /app

Expand Down
Loading