Skip to content

Commit 6db7458

Browse files
committedMay 15, 2023
Fixed error handling for contracts with receive and non-payable fallback.
1 parent f87f6ef commit 6db7458

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed
 

‎src.ts/_tests/test-contract.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -436,13 +436,13 @@ describe("Test Contract Fallback", function() {
436436
name: "receive and non-payable fallback",
437437
address: "0x5b59d934f0d22b15e73b5d6b9ae83486b70df67e",
438438
abi: [
439-
"fallback() payable",
439+
"fallback()",
440440
"receive()"
441441
],
442442
sendNone: { data: "0x" },
443443
sendData: { data: "0x" },
444444
sendValue: { data: "0x" },
445-
sendDataAndValue: { error: "overrides.value" },
445+
sendDataAndValue: { error: "overrides" },
446446
},
447447
];
448448

@@ -489,7 +489,7 @@ describe("Test Contract Fallback", function() {
489489
//console.log(result);
490490
assert.ok(true);
491491
} else {
492-
assert.rejects(func, function(error: any) {
492+
await assert.rejects(func, function(error: any) {
493493
if (error.message === send.error) { return true; }
494494
if (isError(error, "INVALID_ARGUMENT")) {
495495
return error.argument === send.error;

‎src.ts/contract/contract.ts

+13-3
Original file line numberDiff line numberDiff line change
@@ -172,13 +172,23 @@ function buildWrappedFallback(contract: BaseContract): WrappedFallback {
172172

173173
const iface = contract.interface;
174174

175+
const noValue = ((tx.value || BN_0) === BN_0);
176+
const noData = ((tx.data || "0x") === "0x");
177+
178+
if (iface.fallback && !iface.fallback.payable && iface.receive && !noData && !noValue) {
179+
assertArgument(false, "cannot send data to receive or send value to non-payable fallback", "overrides", overrides);
180+
}
181+
182+
assertArgument(iface.fallback || noData,
183+
"cannot send data to receive-only contract", "overrides.data", tx.data);
184+
175185
// Only allow payable contracts to set non-zero value
176186
const payable = iface.receive || (iface.fallback && iface.fallback.payable);
177-
assertArgument(payable || (tx.value || BN_0) === BN_0,
178-
"cannot send value to non-payable contract", "overrides.value", tx.value);
187+
assertArgument(payable || noValue,
188+
"cannot send value to non-payable fallback", "overrides.value", tx.value);
179189

180190
// Only allow fallback contracts to set non-empty data
181-
assertArgument(iface.fallback || (tx.data || "0x") === "0x",
191+
assertArgument(iface.fallback || noData,
182192
"cannot send data to receive-only contract", "overrides.data", tx.data);
183193

184194
return tx;

0 commit comments

Comments
 (0)
Please sign in to comment.