mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-28 07:36:44 +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,
|
||||
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 {
|
||||
t.Fatalf("err unpacking result: %v", err)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue