mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-11 14:33:52 +00:00
accounts/abi/bind/v2: fix test that doesn't compile
This commit is contained in:
parent
5ae1de49c7
commit
0a751f8727
1 changed files with 1 additions and 1 deletions
|
|
@ -158,7 +158,7 @@ func TestDeploymentLibraries(t *testing.T) {
|
||||||
Address: contractAddr,
|
Address: contractAddr,
|
||||||
Backend: bindBackend,
|
Backend: bindBackend,
|
||||||
}
|
}
|
||||||
internalCallCount, err := Call[big.Int](ctrctInstance, callOpts, doInput, ctrct.UnpackDo)
|
internalCallCount, err := Call[*big.Int](ctrctInstance, callOpts, doInput, ctrct.UnpackDo)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("err unpacking result: %v", err)
|
t.Fatalf("err unpacking result: %v", err)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue